-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (30 loc) · 1006 Bytes
/
setup.py
File metadata and controls
36 lines (30 loc) · 1006 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
32
33
34
35
36
from setuptools import find_packages, setup
import geonode_datacite
def read_file(path: str):
with open(path, "r") as file:
return file.read()
setup_requires = [
"wheel",
]
setup(
name="geonode-datacite",
version=geonode_datacite.__version__,
url=geonode_datacite.__url__,
description=geonode_datacite.__doc__,
long_description="A GeoNode 4.4+ app that generates DOIs https://datacite.org/create-dois/",
long_description_content_type="text/markdown",
author=geonode_datacite.__author__,
author_email=geonode_datacite.__email__,
platforms="any",
classifiers=[
"Environment :: Web Environment",
"Framework :: Django :: 4.2",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
packages=find_packages(),
include_package_data=True,
install_requires=["requests>=2.31.0"],
)