-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (30 loc) · 958 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(
name='impasse',
# Version chosen for parity with Assimp since we need ABI compatibility
version='5.2.0',
license='BSD',
description='Alternate Python bindings for the Open Asset Import Library (ASSIMP)',
long_description=readme(),
long_description_content_type="text/markdown",
url='https://github.com/SaladDais/Impasse',
author='Salad Dais',
author_email='[email protected]',
packages=['impasse'],
data_files=[
('share/impasse', ['README.md']),
# TODO: Make these proper console scripts
# ('share/examples/impasse', ['scripts/' + f for f in os.listdir('scripts/')]),
],
install_requires=['numpy', 'cffi'],
python_requires='>=3.7',
zip_safe=False,
tests_require=[
"pytest",
],
test_suite='tests',
)