forked from pennersr/django-cooki18n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (27 loc) · 938 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
#!/usr/bin/env python
from setuptools import setup,find_packages
METADATA = dict(
name='django-cooki18n',
version='0.1.0',
author='Raymond Penners',
author_email='[email protected]',
description='related to Django tickets #12794, #15902',
long_description=open('README.rst').read(),
url='http://github.com/pennersr/django-cooki18n',
keywords='django i18n cookie language',
install_requires=['django'],
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Environment :: Web Environment',
'Topic :: Internet',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
packages=find_packages(),
)
if __name__ == '__main__':
setup(**METADATA)