-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
38 lines (37 loc) · 1.18 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
from setuptools import setup, find_packages
import contessa
setup(
name="contessa",
version=contessa.__version__,
description="Data-quality framework",
long_description=open("README-MINIMAL.rst", "r").read(),
long_description_content_type="text/x-rst",
license="MIT",
author="Mario Hunka",
author_email="[email protected]",
url="https://github.com/kiwicom/contessa",
packages=find_packages(),
package_data={"contessa": ["alembic.ini", "alembic/*", "alembic/**/*"]},
install_requires=[
"sqlalchemy>=1.2",
"psycopg2>=2.7",
"jinja2>=2.10",
"alembic>=0.8.10",
"click>=7.0",
"packaging>=19.2",
],
tests_require=["pytest"],
python_requires=">=3.6",
entry_points={
"console_scripts": ["contessa-migrate=contessa.migration_runner:main"]
},
classifiers=[
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Database",
"Topic :: Software Development :: Quality Assurance",
"Programming Language :: Python :: 3",
],
)