|
1 | 1 | import setuptools |
2 | 2 |
|
3 | | -with open("README.md", "r") as fh: |
4 | | - long_description = fh.read() |
5 | | - |
6 | | -setuptools.setup( |
7 | | - name="openmc_data_downloader", |
8 | | - version="develop", |
9 | | - summary="Download cross section h5 files for use in OpenMC", |
10 | | - author="Jonathan Shimwell", |
11 | | - |
12 | | - description="A tool for selectively downloading h5 files for specified isotopes / elements from your libraries of choice", |
13 | | - long_description=long_description, |
14 | | - long_description_content_type="text/markdown", |
15 | | - url="https://github.com/openmc-data-storage/openmc_data_downloader", |
16 | | - packages=setuptools.find_packages(), |
17 | | - zip_safe=True, |
18 | | - package_dir={"openmc_data_downloader": "openmc_data_downloader"}, |
19 | | - scripts=["openmc_data_downloader/openmc_data_downloader"], |
20 | | - package_data={ |
21 | | - "openmc_data_downloader": [ |
22 | | - "requirements.txt", |
23 | | - "README.md", |
24 | | - "LICENSE", |
25 | | - ] |
26 | | - }, |
27 | | - classifiers=[ |
28 | | - "Natural Language :: English", |
29 | | - "Topic :: Scientific/Engineering", |
30 | | - "Programming Language :: Python :: 3", |
31 | | - "Programming Language :: Python :: 3.6", |
32 | | - "Programming Language :: Python :: 3.7", |
33 | | - "Programming Language :: Python :: 3.8", |
34 | | - "Programming Language :: Python :: 3.9", |
35 | | - "License :: OSI Approved :: MIT License", |
36 | | - "Operating System :: OS Independent", |
37 | | - ], |
38 | | - tests_require=["pytest-cov", "pytest-runner"], |
39 | | - install_requires=[ |
40 | | - "pandas", |
41 | | - "retry", |
42 | | - # 'openmc' is optional for this package but is not available via pip install at the moment |
43 | | - ], |
44 | | -) |
| 3 | +if __name__ == "__main__": |
| 4 | + setuptools.setup() |
0 commit comments