-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathsetup.py
More file actions
57 lines (48 loc) · 1.76 KB
/
setup.py
File metadata and controls
57 lines (48 loc) · 1.76 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
54
55
56
57
#! /usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
ver_dic = {}
version_file = open("pytools/version.py")
try:
version_file_contents = version_file.read()
finally:
version_file.close()
exec(compile(version_file_contents, "pytools/version.py", "exec"), ver_dic)
setup(name="pytools",
version=ver_dic["VERSION_TEXT"],
description="A collection of tools for Python",
long_description=open("README.rst", "r").read(),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Other Audience",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
],
python_requires="~=3.6",
install_requires=[
"decorator>=3.2.0",
"appdirs>=1.4.0",
"numpy>=1.6.0",
"dataclasses>=0.7;python_version<='3.6'",
],
extras_require={
"tag_parsing": ["lark-parser"],
},
package_data={"pytools": ["py.typed"]},
author="Andreas Kloeckner",
url="http://pypi.python.org/pypi/pytools",
author_email="inform@tiker.net",
license="MIT",
packages=["pytools"])