-
Notifications
You must be signed in to change notification settings - Fork 31
/
setup.py
32 lines (27 loc) · 1.22 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
import os
import pypandoc
from setuptools import setup
# See https://packaging.python.org/distributing/#entry-points.
setup(
name='cross3d',
description='A unified API allowing to interact with multiple 3D content creation packages.',
long_description=pypandoc.convert(os.path.join(os.path.abspath(os.path.dirname(__file__)), 'README.md'), 'rst'),
url='https://github.com/blurstudio/cross3d',
author='Blur Studio',
author_email='github@blurstudio.com',
license='GPL',
# Versions should comply with PEP440.
version='0.1.0',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers.
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Artistic Software',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python :: 2.7',
],
keywords='3d autodesk dcc vfx python qt 3dmax softimage xsi maya motionbuilder',
packages=['cross3d', 'cross3d.abstract', 'cross3d.maya', 'cross3d.studiomax', 'cross3d.softimage', 'cross3d.motionbuilder', 'cross3d.migrate', 'cross3d.classes'],
# See https://packaging.python.org/en/latest/requirements.html,
install_requires=[],
)