forked from vfxetc/sgapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (23 loc) · 737 Bytes
/
setup.py
File metadata and controls
30 lines (23 loc) · 737 Bytes
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
from setuptools import setup, find_packages
setup(
name='sgapi',
version='0.1-dev',
description='Low-level Shotgun API',
url='http://github.com/westernx/sgapi',
packages=find_packages(exclude=['build*', 'tests*']),
author='Mike Boers',
author_email='sgapi@mikeboers.com',
license='BSD-3',
install_requires=[
'requests',
'certifi',
],
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',
],
)