|
28 | 28 | with open("README.md") as readme_file: |
29 | 29 | readme = readme_file.read() |
30 | 30 |
|
31 | | -with open("HISTORY.rst") as history_file: |
32 | | - history = history_file.read() |
33 | | - |
34 | 31 | with open("requirements.txt") as requirements_file: |
35 | 32 | requirements = requirements_file.read().split("\n") |
36 | 33 |
|
|
41 | 38 | name="py-ard", |
42 | 39 | version="1.0.0rc4", |
43 | 40 | description="ARD reduction for HLA with Python", |
44 | | - long_description=readme + "\n\n" + history, |
| 41 | + long_description=readme, |
45 | 42 | long_description_content_type="text/markdown", |
46 | 43 | author="CIBMTR", |
47 | 44 | |
|
61 | 58 | zip_safe=False, |
62 | 59 | keywords="pyard", |
63 | 60 | classifiers=[ |
64 | | - "Development Status :: 2 - Pre-Alpha", |
65 | | - "Intended Audience :: Developers", |
| 61 | + "Development Status :: 5 - Production/Stable", |
| 62 | + "Intended Audience :: Science/Research", |
| 63 | + "Topic :: Scientific/Engineering :: Bio-Informatics", |
66 | 64 | "License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)", |
67 | 65 | "Natural Language :: English", |
68 | 66 | "Programming Language :: Python :: 3.8", |
69 | 67 | "Programming Language :: Python :: 3.9", |
| 68 | + "Programming Language :: Python :: 3.10", |
70 | 69 | ], |
71 | 70 | test_suite="tests", |
72 | 71 | tests_require=test_requirements, |
|
0 commit comments