-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
62 lines (52 loc) · 1.52 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
#! /usr/bin/env python
#
# Copyright (C) 2020-2020 Victor Kharlamov
DESCRIPTION = "PrettyAnalyticPlots: special plots for analysis"
DISTNAME = "PrettyAnalyticPlots"
MAINTAINER = "Victor Kharlamov"
MAINTAINER_EMAIL = "vi.v.kharlamov@gmail.com"
LICENSE = "BSD (3-clause)"
DOWNLOAD_URL = "https://github.com/Xapulc/PrettyAnalyticPlots"
VERSION = "0.1.0b"
PYTHON_REQUIRES = ">=3.6"
INSTALL_REQUIRES = [
"numpy>=1.13.3",
"scipy>=1.0.1",
"pandas>=0.22.0",
"matplotlib>=2.1.2",
"seaborn>=0.10.1"
]
PACKAGES = [
'analyticplots'
]
CLASSIFIERS = [
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Multimedia :: Graphics',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS'
]
if __name__ == "__main__":
from setuptools import setup
import sys
if sys.version_info[:2] < (3, 6):
raise RuntimeError("package requires python >= 3.6.")
setup(
name=DISTNAME,
author=MAINTAINER,
author_email=MAINTAINER_EMAIL,
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
description=DESCRIPTION,
license=LICENSE,
version=VERSION,
download_url=DOWNLOAD_URL,
python_requires=PYTHON_REQUIRES,
install_requires=INSTALL_REQUIRES,
packages=PACKAGES,
classifiers=CLASSIFIERS
)