-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
31 lines (30 loc) · 1.1 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
from setuptools import setup, find_packages
setup(name='imctrans',
version='0.1.6',
description='IMC Bindings Generator',
url='http://github.com/oceanscan/imctrans',
author='Ricardo Martins',
author_email='rasm@oceanscan-mst.com',
license='Apache Software License (http://www.apache.org/licenses/LICENSE-2.0)',
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Software Development :: Code Generators',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
python_requires='>=3.4',
zip_safe=False,
packages=find_packages('.'),
package_data={
'imctrans.cpp': ['assets/src/IMC/Base/*.hpp', 'assets/src/IMC/Base/*.cpp'],
},
entry_points={
'console_scripts': [
'imctrans=imctrans.cli:main',
],
}
)