-
Notifications
You must be signed in to change notification settings - Fork 33
/
setup.py
51 lines (46 loc) · 1.65 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
#!/usr/bin/env python
import codecs
from setuptools import find_packages, setup
def read_me(filename):
return codecs.open(filename, encoding='utf-8').read()
setup(
name='django-jalali-date',
version='1.1.3',
python_requires='>=3',
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='https://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',
zip_safe=False,
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Framework :: Django',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.2',
'Framework :: Django :: 5.0',
],
)