forked from customerio/customerio-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 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
import os
from setuptools import find_packages, setup
version = {}
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'customerio', '__version__.py')) as f:
exec(f.read(), version)
setup(
name="customerio",
version=version['__version__'],
author="Peaberry Software Inc.",
author_email="[email protected]",
license="BSD",
description="Customer.io Python bindings.",
url="https://github.com/customerio/customerio-python",
packages=find_packages(),
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
install_requires=['requests>=2.20.0'],
test_suite="tests",
)