-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py.bak
More file actions
33 lines (29 loc) · 1022 Bytes
/
setup.py.bak
File metadata and controls
33 lines (29 loc) · 1022 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/usr/bin/python3
import setuptools
with open('README.md', 'r') as _:
long_description = _.read()
with open('requirements.txt', 'r') as _:
requires = [i.strip() for i in _.readlines()]
setuptools.setup(
author='Ping Wu',
author_email='wpwupingwp@outlook.com',
description='Assembly Plastid Genome',
install_requires=requires,
license='GNU AGPL v3',
long_description=long_description,
long_description_content_type='text/markdown',
name='novowrap',
packages=setuptools.find_packages(),
# f-string and Path-like
python_requires='>=3.7',
url='https://github.com/wpwupingwp/novowrap',
version='1.32',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Bio-Informatics'
],
)