-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathsetup.py
56 lines (53 loc) · 1.59 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
INSTALL_REQUIRES = [
"jinja2>=3.0.3",
"openpyxl>=3.0.9",
"pandas>=1.1.5",
"phik>=0.12.0",
"requests>=2.26.0",
"scipy>=1.5.4",
"unidecode>=1.3.2",
"xlrd>=2.0.1",
]
PACKAGE_NAME = "leila"
setuptools.setup(
name=PACKAGE_NAME,
version="0.2",
author="Departamento Nacional de Planeación - DNP",
author_email="[email protected]",
maintainer="Unidad de Científicos de Datos - UCD",
maintainer_email="[email protected]",
description=(
"Librería para medir la calidad de los datos en conjuntos "
"de datos estructurados"
),
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
keywords=[
"Python",
"Calidad de datos",
"UCD",
"DNP",
],
url="https://github.com/ucd-dnp/leila",
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=INSTALL_REQUIRES,
project_urls={
"Documentación": "https://ucd-dnp.github.io/leila/",
"Seguimiento de fallas": "https://github.com/ucd-dnp/leila/issues",
},
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
python_requires=">=3.6.2",
)