-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
61 lines (51 loc) · 1.58 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
59
60
61
#! /usr/bin/env python
#
# Copyright (C) Hideto Mori
DESCRIPTION = "plasmid map viewer via matplotlib"
LONG_DESCRIPTION = ""
DISTNAME = 'plasmidviewer'
MAINTAINER = 'Hideto Mori'
MAINTAINER_EMAIL = 'morityunasfc.keio.ac.jp/hidto7592agmail.com'
URL = 'https://github.com/ponnhide/patchworklib'
LICENSE = 'GNU General Public License v3.0'
DOWNLOAD_URL = 'https://github.com/ponnhide/patchworklib'
VERSION = '0.0.0'
PYTHON_REQUIRES = ">=3.7"
INSTALL_REQUIRES = [
'matplotlib>=3.4',
'biopython>=1.78',
]
PACKAGES = [
'plasmidviewer'
]
CLASSIFIERS = [
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'License :: OSI Approved :: GNU General Public License v3.0',
'Topic :: Bioinformatics',
'Operating System :: OS Independent',
]
if __name__ == "__main__":
from setuptools import setup
import sys
if sys.version_info[:2] < (3, 7):
raise RuntimeError("patchworklib requires python >= 3.7.")
setup(
name=DISTNAME,
author=MAINTAINER,
author_email=MAINTAINER_EMAIL,
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
license=LICENSE,
url=URL,
version=VERSION,
download_url=DOWNLOAD_URL,
python_requires=PYTHON_REQUIRES,
install_requires=INSTALL_REQUIRES,
packages=PACKAGES,
classifiers=CLASSIFIERS
)