forked from tomturner/cython-csg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (45 loc) · 1.39 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
from setuptools import setup
from distutils.extension import Extension
from Cython.Distutils import build_ext
import io
from os.path import exists
__version__ = "0.5.8"
ext_modules = [
Extension("_cython_csg", ["cython_csg/_cython_csg.pyx"]),
]
setup(
name='cython-csg',
version=__version__,
author='Thomas Turner',
author_email='[email protected]',
cmdclass={'build_ext': build_ext},
ext_modules=ext_modules,
scripts=[],
packages=[
'cython_csg',
],
url='https://github.com/tomturner/cython-csg',
license='MIT',
description='Constructive solid geometry on meshes using BSP trees in Cython CSG.',
long_description=io.open('README.rst', encoding='utf-8').read() if exists("README.rst") else "",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'License :: OSI Approved :: MIT License',
'Framework :: Django',
'Framework :: Django :: 2.0',
'Programming Language :: Python',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules'
],
install_requires=[
'Cython >= 0.27',
],
zip_safe=False,
package_data={
'cython_csg': ['*.pyd']
},
include_package_data=True,
)