-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
36 lines (28 loc) · 1.07 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 os
from setuptools import find_packages
from setuptools import setup
import django_xmlrpc
setup(name='django-xmlrpc',
version=django_xmlrpc.__version__,
description='XML-RPC Server App for the Django framework.',
long_description=open(os.path.join('README.rst')).read(),
keywords='django, service, xmlrpc',
author='Graham Binns',
author_email='[email protected]',
maintainer='Fantomas42',
maintainer_email='[email protected]',
url='https://github.com/Fantomas42/django-xmlrpc',
packages=find_packages(),
classifiers=[
'Framework :: Django',
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules'],
license='New BSD License',
include_package_data=True,
zip_safe=False
)