-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 841 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from skbuild import setup
import os, io
this_directory = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
if __name__ == '__main__':
setup(
name='py_slvs',
version='1.0.6',
packages=['py_slvs'],
license='Gnu General Public License 3.0',
author='Zheng, Lei',
author_email='realthunder.dev@gmail.com',
cmake_args=['-DENABLE_GUI:BOOL=OFF','-DBUILD_PYTHON:BOOL=ON', '-DCMAKE_POLICY_VERSION_MINIMUM=3.5'],
cmake_source_dir='py_slvs',
url='https://github.com/realthunder/slvs_py',
description='Python binding of SOLVESPACE geometry constraint solver',
long_description=long_description,
long_description_content_type='text/markdown'
)