|
1 |
| -from os import path |
2 |
| -from setuptools import setup, find_packages |
| 1 | +from setuptools import setup |
| 2 | + |
| 3 | +exec(compile(open('gmsc_mapper/gmsc_mapper_version.py').read(), |
| 4 | + 'gmsc_mapper/gmsc_mapper_version.py', 'exec')) |
| 5 | + |
| 6 | +long_description = open('README.md', encoding='utf-8').read() |
3 | 7 |
|
4 | 8 | setup(
|
5 |
| - name="GMSC-mapper", |
6 |
| - version="0.0.1a0", |
7 |
| - description="Command line tool to query the Global Microbial smORFs Catalog (GMSC)", |
8 |
| - long_description=open("./README.md", "r").read(), |
9 |
| - long_description_content_type="text/markdown", |
10 |
| - url="https://github.com/BigDataBiology/GMSC-mapper", |
| 9 | + name="GMSC-mapper", |
| 10 | + version=__version__, |
| 11 | + description="Command line tool to query the Global Microbial smORFs Catalog (GMSC)", |
| 12 | + long_description=long_description, |
| 13 | + long_description_content_type="text/markdown", |
| 14 | + url="https://github.com/BigDataBiology/GMSC-mapper", |
11 | 15 | author="Yiqian Duan",
|
12 |
| - |
| 16 | + |
13 | 17 | license="MIT",
|
14 |
| - classifiers=[ |
15 |
| - "Development Status :: 3 - Alpha", |
| 18 | + classifiers=[ |
| 19 | + "Development Status :: 4 - Beta", |
16 | 20 | "Topic :: Scientific/Engineering :: Bio-Informatics",
|
17 | 21 | "License :: OSI Approved :: MIT License",
|
18 | 22 | 'Programming Language :: Python :: 3.7',
|
|
21 | 25 | 'Programming Language :: Python :: 3.10',
|
22 | 26 | 'Programming Language :: Python :: 3.11',
|
23 | 27 | ],
|
24 |
| - packages=['gmsc_mapper'], |
| 28 | + packages=['gmsc_mapper'], |
25 | 29 | install_requires=open('./requirements.txt', 'r').read().splitlines(),
|
26 | 30 | zip_safe=False,
|
27 |
| - entry_points={ |
| 31 | + entry_points={ |
28 | 32 | "console_scripts": ['gmsc-mapper=gmsc_mapper.main:main'],
|
29 | 33 | }
|
30 | 34 | )
|
0 commit comments