-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
31 lines (27 loc) · 869 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
30
31
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
INSTALL_REQUIRE = []
with open('requirements/prod.txt') as fd:
for line in fd.readlines():
INSTALL_REQUIRE.append(line.replace(' ', ''))
TEST_REQUIRE = []
with open('requirements/dev.txt') as fd:
for line in fd.readlines():
TEST_REQUIRE.append(line.replace(' ', ''))
setup(
name='outbrain',
version='0.0.10',
author='Brian Mason',
author_email='[email protected]',
url='https://github.com/bmason/python-outbrain',
packages=['outbrain'],
license='LGPL 2.1 or later',
description='Wrapper for the Outbrain Amplify API',
install_requires=INSTALL_REQUIRE,
tests_require=TEST_REQUIRE,
test_suite='test',
keywords=['outbrain','api', 'amplify'],
classifiers=['Intended Audience :: Developers']
)