forked from GouMinghao/Geometry3D
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (26 loc) · 938 Bytes
/
setup.py
File metadata and controls
39 lines (26 loc) · 938 Bytes
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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
def read(name):
with open(name, "r") as fd:
return fd.read()
setup(
name="Geometry3D",
version="0.2.4",
description="A 3D Geometry Lib",
long_description=read("README.md"),
url="https://github.com/GouMinghao/Geometry3D",
author="Minghao Gou",
author_email="gouminghao@gmail.com",
license="GPL",
packages=find_packages(),
classifiers=[
"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 :: 3",
],
keywords="analytic geometry intersection 3d",
install_requires=[],
)