-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (33 loc) · 1.01 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as readme_file:
readme = readme_file.read()
requirements = [
"beautifulsoup4",
"requests",
"fuzzywuzzy",
"python-Levenshtein"
]
setup(
name="ProPyCore",
version="0.5.4",
author="Hagen E. Fritz",
author_email="[email protected]",
description="Interact with Procore through Python for data connection applications",
long_description=readme,
long_description_content_type="text/markdown",
keywords=['procore', 'api', 'python', 'sdk'],
url="https://github.com/rogers-obrien-rad/ProPyCore",
packages=find_packages(exclude=["snippets", "tests"]),
install_requires=requirements,
tests_require=[
'pytest',
'pytest-mock'
],
classifiers=[
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)