-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
37 lines (35 loc) · 1.05 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
from setuptools import setup
import os
with open(os.path.join("pygtc", "VERSION.txt")) as version_file:
version_number = version_file.read().strip()
setup(
name="pyGTC",
description="Make an awesome giant triangle confusogram (gtc)!",
version=version_number,
author="Sebastian Bocquet and Faustin Carter",
author_email="[email protected]",
license="MIT",
url="http://github.com/sebastianbocquet/pygtc",
packages=["pygtc"],
package_data={
"pygtc": [
"VERSION.txt",
"tests/*.py",
"tests/baseline/*.png",
"tests/legacy_baseline/*.png",
]
},
long_description=open("README.rst").read(),
install_requires=[
"packaging",
"numpy>=1.7.1",
"matplotlib>=2.2",
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Visualization",
],
)