forked from mirmik/zencad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·58 lines (52 loc) · 1.43 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
#!/usr/bin/env python3
from wheel.bdist_wheel import bdist_wheel as bdist_wheel_
from setuptools import setup, Extension, Command
from distutils.util import get_platform
import glob
import sys
import os
directory = os.path.dirname(os.path.realpath(__file__))
requires = [
"evalcache>=1.12.3",
"pyservoce>=1.23.0",
"numpy",
"pillow",
"pyopengl",
"PyQt5!=5.14.1",
"psutil"
]
#if sys.platform != "win32":
# requires.append("setproctitle")
setup(
name="zencad",
packages=["zencad"],
version="0.33.1",
license="MIT",
description="CAD system for righteous zen programmers ",
author="mirmik",
author_email="mirmikns@yandex.ru",
url="https://github.com/mirmik/zencad",
long_description=open(os.path.join(directory, "README.md"), "r").read(),
long_description_content_type="text/markdown",
keywords=["testing", "cad"],
classifiers=[],
package_data={
"zencad": [
"industrial-robot.svg",
"zencad_logo.png",
"bird.jpg",
"techpriest.jpg",
"geom/*",
"convert/*",
"libs/*",
"gui/*",
"internal_models/*",
"examples/*",
"examples/**/*",
"examples/**/**/*",
]
},
include_package_data=True,
install_requires=requires,
entry_points={"console_scripts": ["zencad=zencad.__main__:main"]},
)