We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e87ab9 commit ae6be2dCopy full SHA for ae6be2d
1 file changed
setup.py
@@ -0,0 +1,22 @@
1
+# -*- coding: utf-8 -*-
2
+
3
+from setuptools import setup, find_packages
4
5
6
+with open('README') as f:
7
+ readme = f.read()
8
9
+with open('LICENSE') as f:
10
+ license = f.read()
11
12
+setup(
13
+ name='shotgun_api3',
14
+ version='3.0.9.beta2',
15
+ description='Shotgun Python API ',
16
+ long_description=readme,
17
+ author='Shotgun Software',
18
+ author_email='',
19
+ url='https://github.com/shotgunsoftware/python-api',
20
+ license=license,
21
+ packages=find_packages(exclude=('tests', ))
22
+)
0 commit comments