-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
47 lines (36 loc) · 1.39 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
46
47
from setuptools import setup, find_packages
setup(
name='sgfs',
version='0.1.0b',
description='Translation layer between Shotgun entities and a file structure.',
url='http://github.com/westernx/sgfs',
packages=find_packages(exclude=['build*', 'tests*']),
include_package_data=True,
author='Mike Boers',
author_email='[email protected]',
license='BSD-3',
entry_points={
'console_scripts': [
# Low-level structure.
'sgfs-tag = sgfs.commands.tag:main',
'sgfs-create-structure = sgfs.commands.create_structure:main',
# Relinking or updating tags.
'sgfs-relink = sgfs.commands.relink:main',
'sgfs-update = sgfs.commands.update:main',
'sgfs-repair = sgfs.commands.repair:main',
# Opening commands.
'sgfs-open = sgfs.commands.open:run_open',
'sgfs-shotgun = sgfs.commands.open:run_shotgun',
'sgfs-which = sgfs.commands.open:run_path',
'sgfs-rv = sgfs.commands.rv:run',
],
},
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',
],
)