Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
31 lines (29 loc) · 999 Bytes
/
Copy pathsetup.py
File metadata and controls
31 lines (29 loc) · 999 Bytes
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
fromsetuptoolsimportfind_packages, setup
exec(open("openscoring/metadata.py").read())
setup(
name="openscoring",
version=__version__,
description="Python client library for the Openscoring REST web service (https://github.com/openscoring/openscoring)",
author="Villu Ruusmann",
author_email="villu.ruusmann@gmail.com",
url="https://github.com/openscoring/openscoring-python",
download_url="https://github.com/openscoring/openscoring-python/archive/"+__version__+".tar.gz",
license=__license__,
classifiers= [
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Software Development",
"Topic :: Scientific/Engineering"
],
packages=find_packages(exclude= ["*.tests.*", "*.tests"]),
exclude_package_data= {
"" : ["README.md"],
},
install_requires= [
"pandas",
"requests>=2.10.0"
]
)