-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·48 lines (43 loc) · 1.24 KB
/
setup.py
File metadata and controls
executable file
·48 lines (43 loc) · 1.24 KB
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
48
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import versioneer
versioneer.VCS = 'git'
versioneer.versionfile_source = 'shotgunCache/_version.py'
versioneer.versionfile_build = 'shotgunCache/_version.py'
versioneer.tag_prefix = '' # tags are like 1.2.0
versioneer.parentdir_prefix = 'shotgunCache' # dirname like 'myproject-1.2.0'
readme = open('README.md').read().strip()
license = open('LICENSE').read().strip()
setup(
name='shotgunCache',
version=versioneer.get_version(),
license=license,
cmdclass=versioneer.get_cmdclass(),
description='Shotgun Cache Server',
long_description=readme,
author='Moonbot Studios',
author_email='brennan@moonbotstudios.com',
url='https://github.com/moonbot/shotgun-cache-server',
packages=[
'shotgunCache',
],
scripts=[
'bin/shotgunCache'
],
package_dir={'shotgunCache':
'shotgunCache'},
include_package_data=True,
install_requires=[
'rethinkdb>=2.0.0.post1',
'pyyaml>=3.11',
'ruamel.yaml>=0.8',
'pyzmq>=13.1.0',
'shotgun_api3>=3.0.19',
],
zip_safe=False,
keywords='shotgunCache',
)