forked from ShujiaHuang/ilus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
58 lines (52 loc) · 1.76 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
49
50
51
52
53
54
55
56
57
58
"""Setup file and install scripts.
Version 1.0.0 (May 23, 2020)
Copyright (c) 2020 Shujia Huang
"""
import os
try:
from setuptools import setup, find_packages
_has_setuptools = True
except ImportError:
from distutils.core import setup, find_packages
DESCRIPTION = "ilus: A handy tools for generating WGS/WES analysis pipeline."
DISTNAME = 'ilus'
MAINTAINER = 'Shujia Huang'
MAINTAINER_EMAIL = '[email protected]'
URL = 'https://github.com/ShujiaHuang/ilus'
LICENSE = 'BSD (3-clause)'
DOWNLOAD_URL = 'https://github.com/ShujiaHuang/ilus'
VERSION = "1.0.1"
ROOT_DIR = os.path.split(os.path.realpath(__file__))[0]
if __name__ == "__main__":
setup(name=DISTNAME,
author=MAINTAINER,
author_email=MAINTAINER_EMAIL,
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
description=DESCRIPTION,
long_description=(open(ROOT_DIR + "/README.rst").read()),
license=LICENSE,
url=URL,
download_url=DOWNLOAD_URL,
packages=find_packages(),
install_requires=[
'PyYAML>=5.1.2',
],
version=VERSION,
include_package_data=True,
# scripts = [],
entry_points={
"console_scripts": [
'ilus = ilus.main:main'
]
},
classifiers=[
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.7',
'License :: OSI Approved :: BSD License',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS'],
)