forked from PytLab/catplot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
90 lines (71 loc) · 2.24 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#!/usr/bin/env python
from setuptools import setup, find_packages
from catplot import __version__ as version
maintainer = 'Shao-Zheng-Jiang'
maintainer_email = '[email protected]'
author = maintainer
author_email = maintainer_email
description = "A Python Library for Energy Profile and 2D/3D Lattice Grid Plotting"
install_requires = [
'numpy',
'scipy',
'matplotlib>=2.0.0',
]
license = 'LICENSE'
long_description = """
=======
catplot
=======
.. image:: https://travis-ci.org/PytLab/catplot.svg?branch=master
:target: https://travis-ci.org/PytLab/catplot
:alt: Build Status
.. image:: https://landscape.io/github/PytLab/catplot/master/landscape.svg?style=flat
:target: https://landscape.io/github/PytLab/catplot/master
:alt: Code Health
.. image:: https://codecov.io/gh/PytLab/catplot/branch/master/graph/badge.svg
:target: https://codecov.io/gh/PytLab/catplot
.. image:: https://img.shields.io/badge/python-3.5, 2.7-green.svg
:target: https://www.python.org/downloads/release/python-351/
:alt: platform
.. image:: https://img.shields.io/badge/pypi-v1.3.3-blue.svg
:target: https://pypi.python.org/pypi/catplot/
:alt: versions
Introduction
------------
**CatPlot** is a Python Library for Energy Profile and Abstract Grid(2D/3D) plotting.
Installation
------------
1. Via pip (recommend)::
pip install catplot
2. From source::
python setup.py install
"""
name = 'catplot'
packages = [
'catplot',
]
platforms = ['linux', 'windows', 'macos']
url = 'https://github.com/PytLab/catplot'
download_url = 'https://github.com/PytLab/catplot/releases'
classifiers = [
'Development Status :: 3 - Alpha',
'Topic :: Utilities',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
]
setup(author=author,
author_email=author_email,
description=description,
license=license,
long_description=long_description,
install_requires=install_requires,
maintainer=maintainer,
name=name,
packages=find_packages(),
platforms=platforms,
url=url,
download_url=download_url,
version=version)