-
Notifications
You must be signed in to change notification settings - Fork 31
/
setup.py
executable file
·73 lines (65 loc) · 2.15 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
from setuptools import setup, find_packages
from os import path
this_directory = path.abspath(path.dirname(__file__))
# imports from __version__
with open(path.join(this_directory, 'Elements', '_version.py'), encoding='utf-8') as f:
exec(f.read())
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='Elements',
version=__version__,
license='Apache 2',
description = "The Elements project",
long_description=long_description,
# long_description= file: README.md, LICENSE.txt
long_description_content_type='text/markdown',
author = "George Papagiannakis",
author_email = "[email protected]",
maintainer='Manos Kamarianakis',
maintainer_email='[email protected]',
url='https://github.com/papagiannakis/Elements',
keywords = ['ECS','Scenegraph','Python design patterns','Computer Graphics'],
package_dir={'Elements':'Elements'},
packages=find_packages(exclude=["tests","tests.*", "tests/*", "pyEEL/*" ]),
install_requires=[
'pip',
'setuptools>=61',
'wheel',
'numpy',
'scipy',
'imgui',
'PyOpenGL',
'pillow',
'PyOpenGL_accelerate',
'pysdl2',
'pysdl2-dll',
'ipykernel',
'usd-core',
'jupyter',
'scikit-spatial',
'bezier',
'clifford',
'trimesh',
'pyganja',
'open3d',
'pyassimp==4.1.3'
],
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Environment :: MacOS X",
"Environment :: Win32 (MS Windows)",
"Environment :: X11 Applications",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: Unix",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
project_urls={
"Homepage" : "https://papagiannakis.github.io/Elements",
"Source" : "https://github.com/papagiannakis/Elements",
"Documentation" : "https://ElementsProject.readthedocs.io",
},
python_requires=">=3.8,<3.10",
)