FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-frameio-client/setup.py at develop · Frameio/python-frameio-client · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
Frameio
/
python-frameio-client
Public
Notifications
You must be signed in to change notification settings
Fork
25
Star
61
Code
Issues
5
Pull requests
18
Discussions
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
python-frameio-client
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
70 lines (63 loc) · 1.79 KB
Breadcrumbs
python-frameio-client
/
setup.py
Copy path
File metadata and controls
70 lines (63 loc) · 1.79 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
=
'platform@frame.io'
,
license
=
'MIT'
,
cmdclass
=
{
'verify'
:
VerifyVersionCommand
,
}
)
Back
|
FazBrowse Home
|
New Git URL