-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
24 lines (22 loc) · 947 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
from setuptools import setup
exec(open("dwca/version.py").read())
setup(
name="python-dwca-reader",
version=__version__, # type: ignore
author="Nicolas Noé - Belgian Biodiversity Platform",
author_email="[email protected]",
packages=["dwca", "dwca.darwincore", "dwca.test"],
url="https://github.com/BelgianBiodiversityPlatform/python-dwca-reader",
license="BSD licence, see LICENCE.txt",
description="A simple Python package to read Darwin Core Archive (DwC-A) files.",
long_description=open("README.rst").read(),
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: PyPy",
],
)