-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (46 loc) · 1.4 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
# Author:
# Loic Gouarin <[email protected]>
#
# License: BSD 3 clause
from setuptools import setup, find_packages
CLASSIFIERS = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS"
]
name = "splinart"
MAJOR = 0
MINOR = 1
PATCH = 2
VERSION = "{}.{}.{}".format(MAJOR, MINOR, PATCH)
with open("splinart/version.py", "w") as f:
f.write("__version__ = '{}'\n".format(VERSION))
setup(
name = "splinart",
author = "[email protected]",
description = "spline art generator",
version = VERSION,
license = "BSD",
classifiers = CLASSIFIERS,
packages = find_packages(exclude=["demos"]),
install_requires = ["numpy",
"matplotlib==2.1",
"six"],
entry_points={ 'console_scripts': [
'splinart=scripts.cli_splinart:main',
],
},
)