-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 866 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 866 Bytes
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
import os
from setuptools import setup, find_packages
long_description = (open('README.rst').read())
exec(open('friendly/silverpop/version.py').read())
setup(name='friendly-silverpop',
version='0.1.0',
url = 'http://butfriendly.com',
description = 'Silverpop Engage API client',
author = 'Christian Schmitz',
author_email = 'chris@butfriendly.com',
long_description = long_description,
classifiers = [
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Topic :: Software Development :: Testing',
'Topic :: Internet :: WWW/HTTP',
],
packages = find_packages(exclude=['tests']),
namespace_packages = ['friendly',],
install_requires = [
'requests',
'python-dateutil',
],
)