forked from shotgunsoftware/python-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (42 loc) · 1.51 KB
/
Copy pathsetup.py
File metadata and controls
49 lines (42 loc) · 1.51 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
from setuptools import setup, find_packages
from codecs import open
from os import path
import pypandoc
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file and convert it to rst
long_description = pypandoc.convert('README.md', 'rst')
# Get the license details from the LICENSE file
with open(path.join(here, 'LICENSE'), encoding='utf-8') as f:
license = f.read()
packages = find_packages(exclude=['tests'])
setup(
name='shotgun-api3',
version='3.0.30',
description='Shotgun Python API',
long_description=long_description,
url='https://github.com/shotgunsoftware/python-api',
author='Shotgun Software',
license='BSD',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Internet :: WWW/HTTP',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
],
keywords='shotgun api development vfx animation games',
packages=packages,
package_data={
'': ['LICENSE', 'NOTICE'],
'lib/httplib2': ['cacerts.txt']
},
include_package_data=True,
zip_safe=False,
)