-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (27 loc) · 940 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
from setuptools import setup, find_packages
import codecs
import os
VERSION = "1.1.9"
DESCRIPTION = "Unofficial python package for ActionNetwork (https://actionnetwork.org/)"
setup(name="py-actionnetworkorg",
version=VERSION,
author="Nir Tatcher",
# author_email="<[email protected]>",
description=DESCRIPTION,
packages=find_packages(where='src'),
package_dir={'': 'src'},
keywords=["python","action_network", "ActionNetwork", "actionnetwork", "AN", "an"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
install_requires=[
"psycopg2_binary==2.9.6",
"Requests==2.31.0",
"setuptools==65.5.0",
"sshtunnel==0.4.0",
],
url="https://github.com/NirTatcher/actionnetworkpy.git",
)