-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
executable file
·46 lines (40 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
#!/usr/bin/env python3
from setuptools import setup
import setup_utils
options = setup_utils.prepare_setup()
ext_modules = []
ext_modules += setup_utils.create_pcl_extentions()
ext_modules += setup_utils.create_utils_extentions()
setup(
name="fluxclient",
version=setup_utils.get_version(),
author="FLUX Inc. Development Team",
author_email="[email protected]",
description="?",
long_description="\nFLUX Delta user side operating interface",
keywords=["FLUX"],
license="AGPLv3",
platforms=['Linux', 'Mac OSX', 'Windows'],
url="https://flux3dp.com/",
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: POSIX',
'Programming Language :: C',
'Programming Language :: C++',
'Programming Language :: Cython',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development :: Libraries :: Python Modules'
],
include_package_data=True,
packages=setup_utils.get_packages(),
test_suite="tests.main.everything",
entry_points=setup_utils.get_entry_points(),
install_requires=setup_utils.get_install_requires(),
setup_requires=['pytest-runner'],
tests_require=['pytest'],
cmdclass={'build_ext': setup_utils.build_ext},
ext_modules=ext_modules,
)