-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
30 lines (28 loc) · 978 Bytes
/
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
from setuptools import setup
setup(
name='codon-bias',
description='codon usage bias analysis tools',
long_description_content_type = 'text/markdown',
url='https://github.com/alondmnt/codon-bias',
project_urls={'Documentation': 'https://codon-bias.readthedocs.io/en/latest/'},
author='Alon Diament',
author_email='[email protected]',
license='MIT',
packages=['codonbias'],
package_data={'': ['*.csv']},
include_package_data=True,
python_requires='>=3',
install_requires=['numpy',
'scipy',
'pandas',
'pandarallel'
],
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
)