-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (48 loc) · 1.33 KB
/
Copy pathsetup.py
File metadata and controls
53 lines (48 loc) · 1.33 KB
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
import setuptools
with open("README.md", "r") as f:
readme = f.read()
INSTALL_REQUIRES = [
"matplotlib",
"numpy",
"pandas",
"Pillow",
]
EXTRAS_REQUIRE = {
"development": [
"pytest",
"black",
]
}
CLASSIFIERS = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Framework :: Matplotlib",
"Topic :: Scientific/Engineering :: Visualization",
]
setuptools.setup(
name="plottable",
version="0.1.5",
author="znstrider",
author_email="mindfulstrider@gmail.com",
author_twitter="@danzn1",
description="Beautifully customized tables with matplotlib",
license="MIT",
long_description_content_type="text/markdown",
long_description=readme,
url="https://github.com/znstrider/plottable",
packages=setuptools.find_packages(),
package_data={
# If any package contains *.txt or *.rst files, include them:
"": ["*.txt"]
},
include_package_data=True,
install_requires=INSTALL_REQUIRES,
extras_require=EXTRAS_REQUIRE,
classifiers=CLASSIFIERS,
python_requires=">=3.7",
)