-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
45 lines (39 loc) · 1.48 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
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / "README.md").read_text(encoding="utf-8")
# with open('requirements.txt') as f:
# requirements = f.read().splitlines()
setup(
name="fuzzy-sql",
version="2.0.5",
description="A generator of random SQL SELECT queries mainly to compare responses from a real dataset against that from a synthetic dataset.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Samer Kababji",
author_email="[email protected]",
classifiers=[
"Development Status :: 4 - Beta", "Programming Language :: Python :: 3.8","Operating System :: OS Independent","License :: OSI Approved :: MIT License"
],
keywords="sql, synthetic, clinical trials, generative, testing, fuzzy, fuzzing",
project_urls = {
'Home': 'https://github.com/skababji-ehil/fuzzy_sql',
'Documentation': 'https://fuzzy-sql.readthedocs.io/en/latest/index.html#'
},
package_dir={"": "src"},
packages=find_packages(where="src"),
install_requires=[
"pandas",
"Jinja2",
"seaborn",
"scikit-learn",
"jupyter",
"jsonschema",
"multiprocess",
"scipy",
"matplotlib"
],
extras_require={
"dev": ["wheel","dvc", "sphinx","sphinxcontrib-bibtex","sphinxcontrib-napoleon"],
},
)