-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (33 loc) · 1.11 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
from distutils.core import setup
from ppgr import __version__
setup(
name="ppgr",
packages=["ppgr"],
version=__version__,
description="Python Piped GRapher",
author="Maximilian Remming",
author_email="[email protected]",
url="https://github.com/PolarPayne/ppgr",
download_url="https://github.com/PolarPayne/ppgr/archive/{}.tar.gz".format(__version__),
license="MIT",
entry_points={
"console_scripts": [
"ppgr = ppgr.__main__:main"
]
},
keywords=["cli", "graphing"],
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: System Administrators",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Utilities",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
]
)