-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
64 lines (57 loc) · 2.27 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
62
63
64
# Copyright (C) 2016-2021 Shujia Huang <[email protected]>
# temporarily redirect config directory to prevent matplotlib importing
# testing that for writeable directory which results in sandbox error in
# certain easy_install versions
import os
from argparse import Namespace
DESCRIPTION = "Geneview: A python package for genomics data visualization."
meta = Namespace(
__DISTNAME__ = "geneview",
__AUTHOR__ = "Shujia Huang",
__AUTHOR_EMAIL__ = "[email protected]",
__URL__ = "https://github.com/ShujiaHuang/geneview",
__LICENSE__ = "BSD (3-clause)",
__DOWNLOAD_URL__ = "https://github.com/ShujiaHuang/geneview",
__VERSION__ = "0.2.1",
)
try:
from setuptools import setup, find_packages
_has_setuptools = True
except ImportError:
from distutils.core import setup, find_packages
if __name__ == "__main__":
THIS_PATH = os.path.abspath(os.path.dirname(__file__))
long_description = os.path.join(THIS_PATH, "README.md")
setup(name=meta.__DISTNAME__,
author=meta.__AUTHOR__,
author_email=meta.__AUTHOR_EMAIL__,
maintainer=meta.__AUTHOR__,
maintainer_email=meta.__AUTHOR_EMAIL__,
description=DESCRIPTION,
long_description=(open(long_description).read()),
long_description_content_type="text/markdown",
license=meta.__LICENSE__,
url=meta.__URL__,
version=meta.__VERSION__,
download_url=meta.__DOWNLOAD_URL__,
install_requires=[
"numpy",
"scipy",
"pandas",
"matplotlib",
"seaborn",
],
packages=find_packages(),
classifiers=[
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: BSD License",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Multimedia :: Graphics",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS"],
)