-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
41 lines (37 loc) · 1.45 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
from os.path import abspath, dirname, join
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
about: dict = {}
here = abspath(dirname(__file__))
with open(join(here, "play3d", "__about__.py")) as f:
exec(f.read(), about)
setuptools.setup(
name="play3d",
version=about["__version__"],
author=about["__author__"],
author_email=about["__email__"],
url=about["__url__"],
license=about["__license__"],
packages=['play3d'],
install_requires=[line.strip() for line in open(join(here, "requirements.txt")).readlines()],
description="Basic 3D world playground with animations and completely from scratch.",
long_description=open(join(dirname(__file__), "README.md")).read(),
long_description_content_type="text/markdown",
keywords="python 3d play3d three_d projection mvp",
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development",
"Topic :: Education",
"Topic :: Scientific/Engineering :: Visualization",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
)