Skip to content
This repository was archived by the owner on Sep 28, 2023. It is now read-only.

Commit 5515fc7

Browse files
author
Andy Harris
committed
add setup.py
1 parent db0f1e4 commit 5515fc7

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

setup.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
from setuptools import setup
2+
3+
setup(name='optimizely',
4+
version='0.1',
5+
description='An interface to Optimizely\'s REST API.',
6+
url='https://github.com/optimizely/optimizely-client-python',
7+
author='Optimizely',
8+
packages=['optimizely'],
9+
install_requires=[
10+
'requests',
11+
],
12+
zip_safe=False)

0 commit comments

Comments
 (0)