OpenPartsLibrary 0.1.0__tar.gz → 0.1.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: OpenPartsLibrary
3
- Version: 0.1.0
3
+ Version: 0.1.2
4
4
  Summary: Python library for creating a database of hardware components for manufacturing
5
5
  Home-page: https://github.com/alekssadowski95/OpenPartsLibrary
6
6
  Author: Aleksander Sadowski
@@ -10,11 +10,21 @@ Classifier: Development Status :: 1 - Planning
10
10
  Classifier: Intended Audience :: Science/Research
11
11
  Classifier: License :: OSI Approved :: MIT License
12
12
  Classifier: Programming Language :: Python :: 3
13
+ Description-Content-Type: text/markdown
13
14
  License-File: LICENSE
15
+ Requires-Dist: sqlalchemy
16
+ Requires-Dist: datetime
17
+ Requires-Dist: pandas
18
+ Requires-Dist: openpyxl
14
19
  Dynamic: author
15
20
  Dynamic: author-email
16
21
  Dynamic: classifier
22
+ Dynamic: description
23
+ Dynamic: description-content-type
17
24
  Dynamic: home-page
18
25
  Dynamic: license
19
26
  Dynamic: license-file
27
+ Dynamic: requires-dist
20
28
  Dynamic: summary
29
+
30
+ Hello world
@@ -4,6 +4,7 @@ setup.py
4
4
  OpenPartsLibrary.egg-info/PKG-INFO
5
5
  OpenPartsLibrary.egg-info/SOURCES.txt
6
6
  OpenPartsLibrary.egg-info/dependency_links.txt
7
+ OpenPartsLibrary.egg-info/requires.txt
7
8
  OpenPartsLibrary.egg-info/top_level.txt
8
9
  openpartslibrary/__init__.py
9
10
  openpartslibrary/db.py
@@ -0,0 +1,4 @@
1
+ sqlalchemy
2
+ datetime
3
+ pandas
4
+ openpyxl
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: OpenPartsLibrary
3
- Version: 0.1.0
3
+ Version: 0.1.2
4
4
  Summary: Python library for creating a database of hardware components for manufacturing
5
5
  Home-page: https://github.com/alekssadowski95/OpenPartsLibrary
6
6
  Author: Aleksander Sadowski
@@ -10,11 +10,21 @@ Classifier: Development Status :: 1 - Planning
10
10
  Classifier: Intended Audience :: Science/Research
11
11
  Classifier: License :: OSI Approved :: MIT License
12
12
  Classifier: Programming Language :: Python :: 3
13
+ Description-Content-Type: text/markdown
13
14
  License-File: LICENSE
15
+ Requires-Dist: sqlalchemy
16
+ Requires-Dist: datetime
17
+ Requires-Dist: pandas
18
+ Requires-Dist: openpyxl
14
19
  Dynamic: author
15
20
  Dynamic: author-email
16
21
  Dynamic: classifier
22
+ Dynamic: description
23
+ Dynamic: description-content-type
17
24
  Dynamic: home-page
18
25
  Dynamic: license
19
26
  Dynamic: license-file
27
+ Dynamic: requires-dist
20
28
  Dynamic: summary
29
+
30
+ Hello world
@@ -1,15 +1,18 @@
1
- from setuptools import setup
1
+ from setuptools import setup, find_packages
2
+
2
3
 
3
4
  setup(
4
5
  name='OpenPartsLibrary',
5
- version='0.1.0',
6
+ version='0.1.2',
6
7
  description='Python library for creating a database of hardware components for manufacturing',
8
+ long_description='Hello world',
9
+ long_description_content_type='text/markdown',
7
10
  url='https://github.com/alekssadowski95/OpenPartsLibrary',
8
11
  author='Aleksander Sadowski',
9
12
  author_email='aleksander.sadowski@alsado.de',
10
13
  license='MIT',
11
- packages=['openpartslibrary'],
12
- install_requires=[''],
14
+ packages=find_packages(),
15
+ install_requires=['sqlalchemy', 'datetime', 'pandas', 'openpyxl'],
13
16
 
14
17
  classifiers=[
15
18
  'Development Status :: 1 - Planning',