forked from mneedham91/PyPardot4
-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
38 lines (30 loc) · 1.02 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
#!/usr/bin/env python
from setuptools import setup
VERSION = "0.1.1"
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="PyPardotSF",
version=VERSION,
description="API wrapper for API v3 & v4 of Pardot marketing automation software.",
keywords="pardot",
long_description=long_description,
long_description_content_type="text/markdown",
author="Daigo Tanaka, Anelen Co., LLC",
url="https://github.com/anelendata/PyPardotSF",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
install_requires=['requests'],
packages=["pypardot", "pypardot.objects", "pypardot.objects_v3"],
package_data={
# Use MANIFEST.ini
},
include_package_data=True
)