-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
27 lines (24 loc) · 836 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
from setuptools import setup, find_packages
exec(open('fuc/version.py').read())
requirements = [
'biopython', 'lxml', 'matplotlib', 'matplotlib-venn', 'numpy', 'pandas',
'pyranges', 'pysam', 'scipy', 'seaborn', 'statsmodels'
]
setup(
name='fuc',
version=__version__,
author='Seung-been "Steven" Lee',
author_email='[email protected]',
description='Frequently used commands in bioinformatics',
long_description=open('README.rst').read(),
long_description_content_type='text/x-rst',
url='https://github.com/sbslee/fuc',
packages=find_packages(),
license='MIT',
install_requires=requirements,
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License'
],
entry_points={'console_scripts': ['fuc=fuc.__main__:main']}
)