-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·46 lines (43 loc) · 1.79 KB
/
setup.py
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
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/python3
import setuptools
from src.OGU.global_vars import name
from src.OGU.utils import init_lineage
init_lineage()
with open('README.md', 'r') as _:
long_description = _.read()
setuptools.setup(
author='Ping Wu',
author_email='[email protected]',
description='Organelle Genome Utilities',
install_requires=['biopython==1.82', 'certifi', 'coloredlogs',
'matplotlib>=3.0.0',
'numpy>=1.21.6', 'primer3-py==2.0.2'],
include_package_data=True,
package_data={name: ['data/animal_orders.csv', 'data/classes.csv',
'data/kingdoms.csv', 'data/phyla.csv',
'data/superkingdoms.csv', 'data/button1.png',
'data/button2.png', 'data/button3.png',
'data/button4.png',
'visualize/draw_circle_plastid.ipynb',
'visualize/draw_circle_mitochondria.ipynb']},
license='GNU AGPL v3',
long_description=long_description,
long_description_content_type='text/markdown',
name=name,
packages=setuptools.find_packages(),
python_requires='>=3.8',
entry_points={'console_scripts': ['OGU = OGU:main', 'ogu = OGU:main']},
url='https://github.com/wpwupingwp/BarcodeFinder',
version='1.996',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.10',
'Topic :: Scientific/Engineering :: Bio-Informatics'
],
)