forked from burke-software/fandjango
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·46 lines (42 loc) · 1.3 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
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/env python
from setuptools import setup
with open("fandjango/version.py") as f:
code = compile(f.read(), "fandjango/version.py", 'exec')
exec(code)
readme = open('README.rst').read()
history = open('HISTORY.rst').read()
setup(
name = 'fandjango',
version = __version__,
description = "Fandjango makes it stupidly easy to create Facebook applications with Django.",
long_description = readme + '\n\n' + history,
author = "Johannes Gorset",
author_email = "jgorset@gmail.com",
url = "http://github.com/jgorset/fandjango",
packages = [
'fandjango',
'fandjango.migrations',
'fandjango.templatetags'
],
package_data = {
'fandjango': [
'templates/fandjango/*',
'locale/no_NB/LC_MESSAGES/*'
]
},
install_requires = [
'facepy >= 0.8',
'requests >= 0.8',
'jsonfield',
],
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7'
'Programming Language :: Python :: 3.4'
]
)