-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 1.13 KB
/
setup.py
File metadata and controls
32 lines (29 loc) · 1.13 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
from setuptools import setup, find_packages
# Read the version from version.py
with open("vepi/version.py", "r", encoding="utf-8") as f:
__version__ = [line for line in f if line.startswith("__version__")][0].split('"')[1]
# Read the README file for the long description
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="vepi",
version=__version__,
author="Greg Hetherington",
author_email="ghetherington@venacorp.com",
description="A Python library for interacting with Vena's ETL API",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/venasolutions/vena-etl-python-interface",
packages=find_packages(), # Automatically find all packages in the directory
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.7",
install_requires=[
"requests>=2.25.1",
"pandas>=1.1.0",
],
include_package_data=True,
)