2018-05-28 22:53:28 +00:00
|
|
|
#!/usr/bin/env python
|
2012-11-10 16:01:55 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import os
|
|
|
|
from distutils.core import setup
|
|
|
|
|
2018-05-28 22:53:28 +00:00
|
|
|
def readme():
|
2018-05-29 09:47:40 +00:00
|
|
|
with open('README.rst') as f:
|
2018-05-28 22:53:28 +00:00
|
|
|
return f.read()
|
|
|
|
|
2012-11-10 16:01:55 +00:00
|
|
|
setup(name='pyassimp',
|
2019-01-30 22:41:01 +00:00
|
|
|
version='4.1.4',
|
2012-11-10 16:01:55 +00:00
|
|
|
license='ISC',
|
|
|
|
description='Python bindings for the Open Asset Import Library (ASSIMP)',
|
2018-05-28 22:53:28 +00:00
|
|
|
long_description=readme(),
|
2016-05-27 08:56:37 +00:00
|
|
|
url='https://github.com/assimp/assimp',
|
2018-05-28 22:53:28 +00:00
|
|
|
author='ASSIMP developers',
|
|
|
|
author_email='assimp-discussions@lists.sourceforge.net',
|
|
|
|
maintainer='Séverin Lemaignan',
|
|
|
|
maintainer_email='severin@guakamole.org',
|
2012-11-10 16:01:55 +00:00
|
|
|
packages=['pyassimp'],
|
2017-09-02 17:46:57 +00:00
|
|
|
data_files=[
|
2018-05-29 09:47:40 +00:00
|
|
|
('share/pyassimp', ['README.rst']),
|
2017-09-02 17:46:57 +00:00
|
|
|
('share/examples/pyassimp', ['scripts/' + f for f in os.listdir('scripts/')])
|
|
|
|
],
|
|
|
|
requires=['numpy']
|
2012-11-10 16:01:55 +00:00
|
|
|
)
|