-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (34 loc) · 1.29 KB
/
Copy pathsetup.py
File metadata and controls
39 lines (34 loc) · 1.29 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
#import src.starpa
import setuptools
import src.starpa
setuptools.setup(
name="starpa",
version=src.starpa.__version__,
url="https://github.com/luidale/starpa",
download_url="https://github.com/luidale/starpa/archive/v0.3.1.tar.gz",
author="Hannes Luidalepp",
author_email="luidale@gmail.com",
license=src.starpa.__license__,
description="Stable RNA processing product analyzer",
long_description=open('README.rst').read(),
packages=setuptools.find_packages('src'),
package_dir={'': 'src'},
entry_points = {
'console_scripts': ['starpa=starpa.__main__:main']},
install_requires=["pyfaidx","schema","docopt","cutadapt"],
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: PyPy',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: Unix',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Bio-Informatics'
],
package_data={'': ['data/*.*']}
)