-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
executable file
·36 lines (34 loc) · 1.15 KB
/
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
import re
from setuptools import find_packages, setup
setup(
name='django-twitter-api',
version=__import__('twitter_api').__version__,
description='Django implementation for Twitter API',
long_description=open('README.md').read(),
author='ramusus',
author_email='[email protected]',
url='https://github.com/ramusus/django-twitter-api',
download_url='http://pypi.python.org/pypi/django-twitter-api',
license='BSD',
packages=find_packages(),
include_package_data=True,
zip_safe=False, # because we're including media that Django needs
install_requires=[
'django',
'django-annoying',
'django-picklefield',
'django-m2m-history',
'django-oauth-tokens>=0.5.1',
'django-m2m-history>=0.2.0',
'tweepy',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)