-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (45 loc) · 1.37 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
import setuptools
from datagrowth.version import VERSION
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="datagrowth",
version=VERSION,
author="Fako Berkers",
author_email="[email protected]",
description="Data engineering tools to create data mash ups using Django",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/fako/datagrowth",
packages=setuptools.find_packages(
exclude=[
"core", "core.*",
"docs", "docs.*",
"sources", "sources.*"
]
),
install_requires=[
"Django>=3.2",
"celery",
"jsonschema>=4.20.0",
"lxml",
"beautifulsoup4",
"urlobject",
"requests",
"Pillow>=8",
"tqdm",
],
python_requires="~=3.8",
include_package_data=True,
classifiers=(
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.2",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
),
)