forked from navduhan/pyseqrna
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (41 loc) · 1.77 KB
/
setup.py
File metadata and controls
47 lines (41 loc) · 1.77 KB
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
47
import setuptools
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setuptools.setup(
name='pySeqRNA',
version='0.2',
description ="pySeqRNA a python based RNA analysis package",
url="https://bioinfo.usu.edu/pyseqrna",
author="Naveen Duhan",
author_email = "naveen.duhan@usu.edu",
license='MIT',
packages = setuptools.find_packages(),
include_package_data=True,
long_description=long_description,
long_description_content_type='text/markdown',
entry_points={
'console_scripts': [
'pyseqrna = pyseqrna.__main__:main',
]
},
# install_requires=[line.rstrip() for line in open("requirements.txt", "rt")],
install_requires = ['certifi','cffi','charset-normalizer','cycler','dill','fonttools','future',
'idna','importlib-metadata','Jinja2','kiwisolver','Markdown','MarkupSafe','matplotlib','numpy',
'packaging','pandas','patsy','Pillow','psutil','pycparser','pyfastx','pyparsing','pysam',
'python-dateutil','pytz','pytz-deprecation-shim','requests', 'adjusttext', 'scikit-learn', 'scipy','seaborn','six',
'statsmodels','tzdata','tzlocal','urllib3','waiting','zipp','wheel','openpyxl', 'notebook', 'tabulate', 'pyarrow'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
# Indicate who your project is intended for
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
# Specify the Python versions you support here.
'Programming Language :: Python :: 3.8',
],
package_data={'': ['param/*.ini']},
python_requires='>=3.8'
)