forked from mikeboers/RemoteControl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (36 loc) · 1.25 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
33
34
35
36
37
38
39
40
41
42
43
44
45
from setuptools import setup, find_packages
setup(
name='remotecontrol',
version='1.0.0-dev',
description='A remote REPL and command socket.',
url='http://github.com/westernx/remotecontrol',
packages=find_packages(exclude=['build*', 'tests*']),
author='Mike Boers',
author_email='[email protected]',
license='BSD-3',
entry_points={
'console_scripts': '''
remotecontrol = remotecontrol.cli:main
''',
'appinit.maya.gui': '''
remotecontrol_maya = remotecontrol.setup:setup_maya
''',
'appinit.nuke.gui': '''
remotecontrol_nuke = remotecontrol.setup:setup_nuke
''',
'appinit.houdini.gui': '''
remotecontrol_houdini = remotecontrol.setup:setup_houdini
''',
'appinit.mari.gui': '''
remotecontrol_mari = remotecontrol.setup:setup_mari
''',
},
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)