-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 937 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
31
32
33
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='rosewater',
version='0.1.1',
description='Expression-aware gene assignment of ROSE output.',
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/j-andrews7/rosewater",
author='Jared Andrews',
author_email='[email protected]',
python_requires='>=3',
py_modules=['rosewater'],
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Development Status :: 4 - Beta'
],
install_requires=[
'Click',
'pandas',
'pybedtools'
],
entry_points={
'console_scripts': [
'rosewater=rosewater:rosewater'
],
},
)