-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.py
70 lines (63 loc) · 1.79 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
import sys
import os
import setuptools
from setuptools.command.install import install
version='2.0.0'
with open("README.md", "r") as f:
long_description = f.read()
class VerifyVersionCommand(install):
"""Custom command to verify that the git tag matches our version"""
description = 'verify that the git tag matches our version'
def run(self):
tag = os.getenv('CIRCLE_TAG')
if tag != version:
info = f"Git tag: {tag} does not match the version of this app: {version}"
sys.exit(info)
setuptools.setup(
name='frameioclient',
version=version,
python_requires='>=3.6.5, <4',
install_requires=[
'analytics-python',
'enlighten',
'importlib-metadata ~= 1.0 ; python_version < "3.8"',
'requests',
'token-bucket',
'urllib3',
'xxhash',
],
extras_require={
'dev': [
'bump2version',
'sphinx',
'sphinx-jekyll-builder'
]
},
entry_points ={
'console_scripts': [
'fiocli = frameioclient.fiocli:main'
]
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Multimedia :: Video',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
description='Client library for the Frame.io API',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/frameio/python-frameio-client',
packages=setuptools.find_packages(),
author='Frame.io, Inc.',
author_email='[email protected]',
license='MIT',
cmdclass={
'verify': VerifyVersionCommand,
}
)