-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
48 lines (45 loc) · 2.39 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
__author__ = 'Fule Liu'
from distutils.core import setup
with open('README.md') as f:
LONG_DESCRIPTION = f.read()
setup(name='repDNA',
version='1.1.4',
author='Bin Liu and Fule Liu',
author_email='[email protected] and [email protected]',
maintainer='Fule Liu',
maintainer_email='[email protected]',
url='http://bioinformatics.hitsz.edu.cn/repDNA/',
description='a Python package to generate various modes of feature vectors for DNA sequences '
'by incorporating user-defined physicochemical properties and sequence-order effects',
long_description=LONG_DESCRIPTION,
download_url='http://bioinformatics.hitsz.edu.cn/repDNA/download',
platforms=['MS Windows', 'Mac X', 'Unix/Linux'],
license='GPL',
keywords=['repDNA', 'DNA'],
packages=['repDNA'],
package_data={
'repDNA': ['data/*.data', 'doc/*.pdf', 'example/*.*', 'test/*.*',
'data/12_trinucleotide_physicochemical_indices/*.txt',
'data/38_dinucleotide_physicochemical_indices/*.txt',
'data/6_dinucleotide_physicochemical_indices/*.txt']},
data_files=[('', ['LICENSE', 'README.md', 'News.md'])],
classifiers=['Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Natural Language :: English',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Software Development :: Libraries :: Python Modules'], )