forked from a-roomana/django-jalali-date
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (38 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
#!/usr/bin/env python
import codecs
from setuptools import setup, find_packages
def read_me(filename):
return codecs.open(filename, encoding='utf-8').read()
setup(
name='django-jalali-date',
version='0.3.1',
packages=find_packages(),
include_package_data=True,
description=(
'Jalali Date support for user interface. Easy conversion of DateTimeFiled to JalaliDateTimeField within the admin site, views, forms and templates.'
),
url='http://github.com/a-roomana/django-jalali-date',
download_url='https://pypi.python.org/pypi/django-jalali-date/',
author='Arman Roomana',
author_email='[email protected]',
keywords="django jalali date",
license='MIT',
platforms=['any'],
install_requires=[
"django",
"jdatetime"
],
long_description=read_me('README.md'),
long_description_content_type='text/markdown',
use_2to3=True,
zip_safe=False,
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)