forked from ribokit/REEFFIT
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (24 loc) · 917 Bytes
/
Copy pathsetup.py
File metadata and controls
31 lines (24 loc) · 917 Bytes
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, find_packages
from reeffit.__init__ import __version__
setup(
name='REEFFIT',
description='RNA Ensemble Extraction From Footprinting Insights Technique',
keywords='RNA Ensemble Structure Weight Alternative',
version=__version__,
author='Pablo Cordero, Rhiju Das',
author_email='rhiju@stanford.edu',
url='https://github.com/ribokit/reeffit/',
license='https://rmdb.stanford.edu/reeffit',
packages=find_packages(),
install_requires=open('requirements.txt', 'r').readlines(),
classifiers=(
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7'
),
zip_safe=True
)