|
27 | 27 | name='cimpyorm', # Required |
28 | 28 | # https://www.python.org/dev/peps/pep-0440/ |
29 | 29 | # https://packaging.python.org/en/latest/single_source_version.html |
30 | | - version='0.8.4', # Required |
| 30 | + version='0.9.0', # Required |
31 | 31 | # https://packaging.python.org/specifications/core-metadata/#summary |
32 | 32 | description="A database-backed ORM for CIM datasets.", # Required |
33 | 33 | # https://packaging.python.org/specifications/core-metadata/#description-optional |
34 | 34 | long_description=long_description, # Optional |
35 | 35 | # https://packaging.python.org/specifications/core-metadata/#description-content-type-optional |
36 | 36 | long_description_content_type='text/markdown', # Optional (see note above) |
37 | | - url="http://www.ifht.rwth-aachen.de", # Optional |
| 37 | + url="http://www.iaew.rwth-aachen.de", # Optional |
38 | 38 | author="Thomas Offergeld", # Optional |
39 | 39 | author_email="t.offergeld@iaew.rwth-aachen.de", # Optional |
40 | 40 | # For a list of valid classifiers, see https://pypi.org/classifiers/ |
|
44 | 44 | 'License :: OSI Approved :: BSD License', 'Natural Language :: English', |
45 | 45 | 'Operating System :: OS Independent', |
46 | 46 | 'Programming Language :: Python :: 3', |
47 | | - 'Programming Language :: Python :: 3.6', |
48 | | - 'Programming Language :: Python :: 3.7' |
| 47 | + 'Programming Language :: Python :: 3.7', |
| 48 | + 'Programming Language :: Python :: 3.8' |
49 | 49 | ], # Optional |
50 | 50 | packages=find_packages(exclude=[ |
51 | 51 | 'cimpyorm/Test/Deployment/**', |
|
54 | 54 | # https://packaging.python.org/en/latest/requirements.html |
55 | 55 | install_requires=[ |
56 | 56 | 'Click', |
57 | | - 'sqlalchemy (>=1.2,<2.0)', |
58 | | - 'networkx (>=2.2,<3.0)', |
59 | | - 'numpy (>=1.15,<2.0)', |
60 | | - 'lxml (>=4.2,<5.0)', |
61 | | - 'pytest (>=4.0,<5.0)', |
62 | | - 'pandas (>=0.24.1,<0.25.0)', |
63 | | - 'tabulate (>=0.8.3,<0.9.0)', |
| 57 | + 'sqlalchemy', |
| 58 | + 'networkx', |
| 59 | + 'numpy', |
| 60 | + 'lxml', |
| 61 | + 'pandas', |
| 62 | + 'tabulate', |
64 | 63 | 'tqdm', |
65 | 64 | 'defusedxml (<0.7.0)' |
66 | 65 | ], # Optional |
|
71 | 70 | include_package_data=True, |
72 | 71 | # https://packaging.python.org/specifications/core-metadata/#project-url-multiple-use |
73 | 72 | project_urls={ # Optional |
74 | | - 'homepage': 'http://www.ifht.rwth-aachen.de', |
| 73 | + 'homepage': 'http://www.iaew.rwth-aachen.de', |
75 | 74 | }, |
76 | 75 | entry_points=''' |
77 | 76 | [console_scripts] |
|
0 commit comments