forked from Uberi/anglr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·42 lines (37 loc) · 1.35 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
import sys
if sys.version_info < (3, 2):
print("THIS MODULE REQUIRES PYTHON 3.2 OR LATER. YOU ARE CURRENTLY USING PYTHON " + sys.version)
sys.exit(1)
import anglr
setup(
name="anglr",
version=anglr.__version__,
py_modules=["anglr"],
include_package_data=True,
# PyPI metadata
author=anglr.__author__,
author_email="azhang9@gmail.com",
description=anglr.__doc__,
long_description=open("README.rst").read(),
license=anglr.__license__,
keywords="angle angles radians unit convert",
url="https://github.com/Uberi/anglr#readme",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Mathematics",
],
)