-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (37 loc) · 1.23 KB
/
setup.py
File metadata and controls
39 lines (37 loc) · 1.23 KB
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
37
38
39
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='emtest',
version='2024.12.0',
description='Data validation for EM-DAT datasets.',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/em-dat/em-test',
author='Damien Delforge, Valentin Wathelet',
author_email='damien.delforge@uclouvain.be',
classifiers=[ # Optional, refer to: https://pypi.org/classifiers/
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.11',
],
keywords='EM-DAT, data validation, disaster database',
packages=find_packages(exclude=['tests', 'examples']),
include_package_data=True,
python_requires='>=3.11, <4',
install_requires=[
'openpyxl~=3.1',
'pandas~=2.2',
'pandera~=0.20',
'toml~=0.10',
],
package_data={
'emtest': [
'validation_data/*.csv',
'validation_data/*.toml',
'validation_data/*.txt',
'validation_data/*.py'
],
},
)