forked from euccas/python-dribbble
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (24 loc) · 741 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
import os
from setuptools import setup, find_packages
install_requires = []
try:
import json
except ImportError, e:
install_requires.append('simplejson')
README_PATH = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'README.markdown')
description = 'A Python interface to the dribbble.com API.'
if os.path.exists(README_PATH):
long_description = open(README_PATH).read()
else:
long_description = description
setup(
name='dribbble',
version='0.0.1',
install_requires=install_requires,
description=description,
long_description=long_description,
author='Steve Losh',
author_email='steve@stevelosh.com',
url='http://bitbucket.org/sjl/python-dribbble/',
packages=['dribbble'],
)