-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (32 loc) · 1.1 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
#!/usr/bin/env python
from setuptools import setup
setup(
name='django-variable-resolution-date',
version='0.1.7',
description='A django field that can represent either a year, or a year and a month, or a full calendar date',
long_description='',
author='Nicholas Wolff',
author_email='nwolff@gmail.com',
url='https://github.com/skioo/django-variable-resolution-date',
download_url='https://pypi.python.org/pypi/django-tombstones',
packages=[
'variable_resolution_date',
],
install_requires=[
'Django>=1.11',
],
licence='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)