-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
37 lines (29 loc) · 1019 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
from setuptools import setup, find_packages
setup(
name='sgevents',
version='0.1-dev',
description='A safe Shotgun event daemon',
url='http://github.com/westernx/sgevents',
packages=find_packages(exclude=['build*', 'tests*']),
author='Mike Boers',
author_email='[email protected]',
license='BSD-3',
install_requires=[
# one of `sgapi` or `shotgun_api3` is required
],
entry_points={
'console_scripts': '''
sgevents-daemon = sgevents.commands.daemon:main
sgevents-dispatch = sgevents.commands.dispatch:main
sgevents-dump = sgevents.commands.dump:main
''',
},
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',
],
)