-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (31 loc) · 914 Bytes
/
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
from setuptools import find_packages, setup
def read_file(path: str):
with open(path, "r") as file:
return file.read()
setup_requires = [
"wheel",
]
setup(
name="importer-datapackage",
version="0.1.0",
url="https://github.com/52north/geonode-contribs",
description="Datapackage handler for the geonode-importer",
long_description=read_file("README.md"),
author="52north",
author_email="[email protected]",
platforms="any",
classifiers=[
"Environment :: Web Environment",
"Framework :: Django",
"License :: OSI Approved :: GNU General Public License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
],
packages=find_packages(),
include_package_data=True,
install_requires=[
"setuptools>=59",
"frictionless==5.17.0",
"geonode_importer>=1.0.9"
],
)