forked from tsznxx/PyCircos
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
54 lines (50 loc) · 2.05 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
#! /usr/bin/env python
# coding: utf-8
# branch: dev
# version: 1.0.3
# license: AGPLv3
# author: Yunfei Wang ([email protected]),
# Baochen Yang ([email protected])
import sys
from setuptools import setup
from distutils.version import LooseVersion
if LooseVersion(sys.version) >= LooseVersion("3.5"):
# decsription
with open("README.md", 'r') as readme:
long_description = readme.read()
setup(
name='pycircos',
version='1.0.3',
author='Yunfei Wang, Baochen Yang',
author_email='[email protected], [email protected]',
url='https://github.com/KimBioInfoStudio/PyCircos',
license="AGPLv3",
keywords="Python NGS Circos Plot",
description=("This Tools is Design for NGS Circos Plot with using Python."),
long_description=long_description,
package_dir={'pycircos': 'src'},
packages=['pycircos'],
scripts=[],
ext_modules=[],
classifiers=[
'Environment :: Console',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: Free for non-commercial use',
'License :: OSI Approved :: GNU General Public License (GPL)',
# 'License :: OSI APPROVED :: GNU General Public License v3 (GPLv3)',
'Operating System :: Unix',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Bio-Informatics'],
install_requires=['numpy', 'pandas', 'matplotlib'],
python_requires='>=3.5')
else:
print("[ WARNING ]")
print("As for www.python.org, Python2 will end life form 1/1/2020,")
print("So we will not support Python2 form now on, and we deeply recommend")
print("all our users to move to Python3.5+ ! Thx!")