-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 990 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
from setuptools import setup, find_packages
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory/"README.md").read_text()
setup(name="highyield",
version="1.1.1",
description="Collection of high-yield functions intended to simplify and automate specific tasks.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/kenf1/High-Yield",
author="K",
license="GPLv3",
package_data={"highyield/data": ["data/*.csv"]},
include_package_data=True,
python_requires=">=3.8",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent"
],
install_requires=[
"pandas",
"seaborn",
"pyttsx3",
"docx2pdf",
"pypdf",
"requests"
],
zip_safe=False)