-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
58 lines (55 loc) · 1.75 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
""" Pypi setup for pylele """
from setuptools import setup, find_packages
with open("README.md", "r", encoding='utf8') as fh:
long_description = fh.read()
setup(
name='pylele',
version='0.1.0',
license='Apache 2.0',
author="Brian Guan, Marco Merlin",
author_email='[email protected], [email protected]',
packages=find_packages('src'),
package_dir={'': 'src'},
description="Python based Ukulele and other String Instrument 3D Model Generator.",
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/bguan/pylele',
keywords='python ukulele guitar',
install_requires=[
"numpy==1.26.4",
"nlopt==2.7.1",
"cadquery==2.4.0",
"bpy==4.0.0; python_version < '3.11'",
"fake-bpy-module-4.0; python_version < '3.11'",
"bpy==4.1.0; python_version == '3.11'",
"fake-bpy-module-4.1; python_version == '3.11'",
"trimesh==4.4.8",
"mathutils",
"manifold3d",
"pillow",
"shapely",
"scipy",
"networkx",
"pyglet<2",
"fonttools",
"solidpython2",
"numpy-stl",
"packaging",
"json-tricks",
"openpyxl",
"prettytable"
],
entry_points={
"console_scripts": [
"pylele1=pylele.pylele1.main:pylele_main",
"pylele2=pylele.pylele2.all_assembly:main",
"stl2glb=pylele.conversion.stl2glb:stl2glb",
"stlascii2stlbin=pylele.conversion.stlascii2stlbin:stlascii2stlbin",
"scad2stl=pylele.conversion.scad2stl:scad2stl_main",
],
},
)
project_urls={
"Source": "https://github.com/bguan/pylele",
"Tracker": "https://github.com/bguan/pylele/issues"
}