forked from tpaviot/pythonocc-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (32 loc) · 1023 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
36
37
#!/usr/bin/env python
import sys, glob
from distutils.core import setup
DESCRIPTION = (
'A set of utilies for pythonocc'
)
CLASSIFIERS = [
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: LGPL License',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development'
]
setup(
name = 'OCCUtils',
version = '0.1-dev',
author = 'Jelle Feringa',
author_email = 'jferinga@gmail.com',
url = 'https://github.com/tpaviot/pythonocc-utils',
description = DESCRIPTION,
long_description = open('README.md').read(),
license = 'LGPLv3',
platforms = 'Platform Independent',
packages = ['OCCUtils'],
keywords = 'pythonocc CAD',
classifiers = CLASSIFIERS,
requires = ['OCC'],
package_data = { 'OCCUtils': ['README.md', 'doc/*.*', 'examples/*.*'], },
)