forked from mbrainerd/tk-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
79 lines (72 loc) · 2.83 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# Copyright (c) 2016 Shotgun Software Inc.
#
# CONFIDENTIAL AND PROPRIETARY
#
# This work is provided "AS IS" and subject to the Shotgun Pipeline Toolkit
# Source Code License included in this distribution package. See LICENSE.
# By accessing, using, copying or modifying this work you indicate your
# agreement to the Shotgun Pipeline Toolkit Source Code License. All rights
# not expressly granted therein are reserved by Shotgun Software Inc.
# Basic setup.py so tk-core could be installed as
# a standard Python package
from setuptools import setup, find_packages
import subprocess
def get_version():
"""
Helper to extract a version number for this module.
:returns: A major.minor.patch[.sub] version string or "dev".
"""
# Try to extract the version number from git
# this will work when installing from a locally cloned repo, or directly from
# github, using the syntax:
#
# pip install git+https://github.com/shotgunsoftware/[email protected]#egg=sgtk
#
# Note: if you install from a cloned git repository
# (e.g. pip install ./tk-core), the version number
# will be picked up from the most recently added tag.
try:
version_git = subprocess.check_output(["git", "describe", "--abbrev=0"]).rstrip()
return version_git
except:
# Blindly ignore problems, git might be not available, or the user could
# be installing from zip archive, etc...
pass
# If everything fails, return a sensible string highlighting that the version
# couldn't be extracted. If a version is not specified in `setup`, 0.0.0
# will be used by default, it seems better to have an explicit keyword for
# this case, following TK "dev" locator pattern and the convention described here:
# http://peak.telecommunity.com/DevCenter/setuptools#specifying-your-project-s-version
return "dev"
# Retrieve long description and licence from external files
try:
f = open("README.md")
readme = f.read().strip()
finally:
if f:
f.close()
try:
f = open("LICENSE")
license = f.read().strip()
finally:
if f:
f.close()
setup(
name="sgtk",
version=get_version(),
description="Shotgun Pipeline Toolkit Core API",
long_description=readme,
author="Shotgun Software",
author_email="[email protected]",
url="https://github.com/shotgunsoftware/tk-core",
license=license,
# Recursively discover all packages in python folder, excluding any tests
packages=find_packages("python", exclude=("*.tests", "*.tests.*", "tests.*", "tests")),
# Additional data which must sit in packages folders
package_data={
# If any package contains data files, include them:
"": ["resources/*", ".txt", "*.*"],
},
# Everything can be found under the python folder, but installed without it
package_dir={"": "python"}
)