-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
38 lines (31 loc) · 885 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
32
33
34
35
36
37
38
# See: http://www.eby-sarna.com/pipermail/peak/2010-May/003357.html
# for why we do this:
try:
import multiprocessing
except ImportError:
pass
from setuptools import setup
try:
import paver.tasks
except ImportError:
from os.path import exists
if exists("paver-minilib.zip"):
import sys
sys.path.insert(0, "paver-minilib.zip")
import paver.tasks
paver.tasks.main()
#setup(
# name="pylithiumsso",
# version="0.2.2",
# description="Python Client for Lithium SSO Integration",
# author="Alex Milstead",
# author_email="amilstead@jawbone.com",
# package_dir={"": "src"},
# packages = ["pylithium"],
# py_modules=["pylithium.client"],
# license="MIT",
# url="https://github.com/jawbone/pylithiumsso",
# test_suite='nose.collector',
# tests_require=["nose==1.2.1"],
# install_requires=["pycrypto==2.6"]
#)