This repository was archived by the owner on Nov 15, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
55 lines (51 loc) · 1.72 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
47
48
49
50
51
52
53
54
55
"""
django-accountkit
~~~~~~~~~~~~~~~
"""
import re
from setuptools import setup
version = ''
with open('accountkit/__init__.py', 'r') as fd:
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]',
fd.read(), re.MULTILINE).group(1)
with open('README.md', 'r') as f:
readme = f.read()
with open('HISTORY.rst', 'r') as f:
history = f.read()
setup(
name='django-accountkit',
version=version,
description='Allow easy integration with Facebook accountkit for Django projects',
long_description=readme + '\n\n' + history,
author='Pradip Caulagi',
author_email='caulagi@gmail.com',
url='http://github.com/toystori/django-accountkit/',
packages=['accountkit'],
package_data={'': ['LICENSE', 'HISTORY.rst', 'README.md']},
include_package_data=True,
install_requires=[
'Django',
],
license='MIT',
zip_safe=False,
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.11',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)