-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (40 loc) · 1023 Bytes
/
setup.py
File metadata and controls
43 lines (40 loc) · 1023 Bytes
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
from setuptools import setup
import Tree
def readme():
with open("README.rst") as f:
return f.read()
NAME = Tree.__name__
VERSION = Tree.__version__
AUTHOR = Tree.__author__
DESCRIPTION = "A package for creating and drawing trees"
LONG_DESCRIPTION = readme()
URL = "https://github.com/PixelwarStudio/PyTree"
REQUIRED = [
"Pillow",
"svgwrite",
"setuptools",
"click"
]
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
url=URL,
author=AUTHOR,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.5",
"Topic :: Scientific/Engineering :: Mathematics",
],
install_requires=REQUIRED,
license="MIT",
packages=["Tree"],
entry_points = {
"console_scripts": ["tree-cli=Tree.cli:create_tree"],
},
zip_safe=False,
include_package_data=True
)