-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
34 lines (32 loc) · 1.21 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
"""Setup file for python packaging."""
import os
import setuptools
dir_path = os.path.dirname(os.path.realpath(__file__))
with open(os.path.join(dir_path, "README.md"), mode="r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="zoomin_client",
version="0.1.0",
author="Shruthi Patil",
author_email="[email protected]",
description="API client to access data from LOCALISED datasharing platform",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://www.localised-project.eu/",
include_package_data=True,
packages=setuptools.find_packages(),
setup_requires=["setuptools-git"],
python_requires=">=3.10",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.10",
"Topic :: Database",
"Topic :: Scientific/Engineering :: Information Analysis",
],
keywords=["localisation", "proxy metrics"],
)