-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsetup.py
33 lines (28 loc) · 924 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
# -*- coding: utf-8 -*-
import codecs
from setuptools import setup
import django_php_bridge
long_description = codecs.open("README.rst", "r", "utf-8").read()
CLASSIFIERS = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Framework :: Django',
]
setup(
name='django-php-bridge',
version=django_php_bridge.__version__,
description=django_php_bridge.__doc__,
author=django_php_bridge.__author__,
author_email=django_php_bridge.__contact__,
url=django_php_bridge.__homepage__,
long_description=long_description,
packages=['django_php_bridge'],
license='BSD',
platforms=['any'],
classifiers=CLASSIFIERS,
install_requires=['phpserialize==1.3'],
)