FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
algorithmia-adk-python/setup.py at develop · algorithmiaio/algorithmia-adk-python · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
algorithmiaio
/
algorithmia-adk-python
Public
Notifications
You must be signed in to change notification settings
Fork
1
Star
6
Code
Issues
2
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
algorithmia-adk-python
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
36 lines (34 loc) · 1.26 KB
Breadcrumbs
algorithmia-adk-python
/
setup.py
Copy path
File metadata and controls
36 lines (34 loc) · 1.26 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
import
os
from
setuptools
import
setup
setup
(
name
=
'algorithmia-adk'
,
version
=
os
.
environ
.
get
(
'ADK_VERSION'
,
'0.0.0'
),
description
=
'Algorithmia Python ADK client'
,
long_description
=
'Algorithm Development Kit code used for creating Python algorithms on Algorithmia. '
'Used by the Algorithmia client'
,
url
=
'http://github.com/algorithmiaio/algorithmia-adk-python'
,
license
=
'MIT'
,
author
=
'Algorithmia'
,
author_email
=
'support@algorithmia.com'
,
packages
=
[
'adk'
],
install_requires
=
[
'pyaml>=21.10,<21.11'
,
'six'
,
],
include_package_data
=
True
,
classifiers
=
[
"Development Status :: 5 - Production/Stable"
,
"Intended Audience :: Developers"
,
"Natural Language :: English"
,
"License :: OSI Approved :: MIT License"
,
"Operating System :: OS Independent"
,
"Programming Language :: Python"
,
"Programming Language :: Python :: 3"
,
"Programming Language :: Python :: 3.5"
,
"Programming Language :: Python :: 3.6"
,
"Programming Language :: Python :: 3.7"
,
"Programming Language :: Python :: 3.8"
,
"Programming Language :: Python :: 3.9"
,
"Topic :: Software Development :: Libraries :: Python Modules"
,
],
)
Back
|
FazBrowse Home
|
New Git URL