-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
40 lines (31 loc) · 988 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
34
35
36
37
38
39
from setuptools import setup
setup(
name = "swiss",
version = "1.1.1",
author = "Ryan Welch",
author_email = "[email protected]",
# Packages
packages = ["swiss","swiss/conf"],
package_data = {
"swiss/conf": ["default.yaml"]
},
# Details
url = "https://github.com/welchr/Swiss",
license = "LICENSE.txt",
description = "Software to help identify overlap between association scan results and GWAS hit catalogs.",
long_description = open("README.md").read(),
install_requires = open("requirements.txt").read().split(),
scripts = [
"bin/swiss",
"bin/swiss-create-data"
],
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 2.7',
#'Programming Language :: Python :: 3.5',
'Operating System :: POSIX :: Linux',
'Topic :: Scientific/Engineering :: Bio-Informatics'
]
)