This repository was archived by the owner on Mar 22, 2021. It is now read-only.
forked from gecrooks/weblogo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·73 lines (56 loc) · 2.54 KB
/
setup.py
File metadata and controls
executable file
·73 lines (56 loc) · 2.54 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#!/usr/bin/env python
import sys
from setuptools import setup, find_packages
# Suppress warning that distutils generates for the install_requires option
#import warnings
#warnings.simplefilter('ignore', UserWarning, lineno=236)
from weblogolib import __version__
def main():
long_description = open("README.txt").read()
setup(
name="weblogo",
version=__version__,
description="WebLogo3 : Sequence Logos Redrawn",
long_description=long_description,
license = 'BSD',
maintainer="Gavin Crooks",
maintainer_email="gec@threeplusone.com",
url="https://github.com/WebLogo/weblogo",
download_url='https://github.com/WebLogo/weblogo/archive/%s.zip' % __version__,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Programming Language :: Python',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
scripts=['weblogo', 'transformseq'],
packages=[
'corebio',
'corebio.seq_io',
'corebio.seq_io._nexus',
'corebio.utils',
'weblogolib',
],
package_data={
'weblogolib': ['htdocs/*.*', 'htdocs/img/*.*', 'htdocs/examples/*.*', 'template.eps'],
'corebio': ['data/*.*']
},
install_requires=['numpy'],
)
if __name__ == '__main__':
main()