-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
40 lines (37 loc) · 1021 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
# with open('requirements.txt') as f:
# requirements = f.read().splitlines()
setuptools.setup(
name="dataviper",
version="0.1.7",
author="Hiromu Ochiai",
description="A simple Data Quality Assessment Tool based on SQL",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/otiai10/dataviper",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
],
install_requires=[
'pandas==1.0.3',
'openpyxl==3.0.3',
'pymysql==1.1.1',
'pypyodbc==1.3.4.3',
'matplotlib-venn==0.11.5',
],
extras_require={
'tests': [
'pytest',
'pytest-cov',
'flake8',
],
'release': [
'twine',
],
},
)