-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (28 loc) · 1018 Bytes
/
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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
def read(name):
with open(name, "r") as fd:
return fd.read()
setup(
name="sgl",
version="0.0.1",
description="A small analytic geometry lib",
long_description=read("README.md"),
url="http://github.com/Kingdread/sgl",
author="Daniel Schadt",
author_email="[email protected]",
license="GPL",
packages=find_packages(),
classifiers=[
"Developement Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Education"
"Topic :: Education",
"Topic :: Scientific/Engineering :: Mathematics",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
],
keywords="analytic geometry",
install_requires=[],
)