-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (34 loc) · 1.39 KB
/
setup.py
File metadata and controls
37 lines (34 loc) · 1.39 KB
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
import re
from pathlib import Path
from setuptools import setup, find_packages
HERE = Path(__file__).parent
_version_file_contents = (HERE / "src" / "version.py").read_text()
matched = re.search(r'"(.*)"', _version_file_contents)
VERSION = matched.group(1) if matched is not None else "UNKNOWN VERSION"
setup(
name="datapipelines",
version=VERSION,
description="Data transform pipeline library to simplify ETL-style applications",
author="Deep Roots",
author_email="",
url="https://github.com/digdeeproots/DataPipeline.Python",
python_requires=">=3.10.0",
packages=find_packages(exclude=["tests*"]),
package_data={"approvaltests": ["reporters/reporters.json"]},
install_requires=["pyperclip==1.8.2", "pytest"],
long_description=(HERE / "README.md").read_text(),
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries",
],
)