-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (24 loc) · 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
from setuptools import setup, find_packages
setup(
name='django-edtf',
version='5.0.0',
description='A Django app for the validation of dates in the Extended Date Time Format.',
long_description=('Please visit https://github.com/unt-libraries/django-edtf'
' for the latest documentation.'),
install_requires=['edtf-validate @ git+https://github.com/unt-libraries/edtf-validate@master'],
packages=find_packages(exclude=['tests*']),
include_package_data=True,
url='https://github.com/unt-libraries/django-edtf',
author='University of North Texas Libraries',
license='BSD',
keywords=['django', 'edtf', 'validate', 'datetime'],
classifiers=[
'Natural Language :: English',
'Environment :: Web Environment',
'Framework :: Django :: 4.2',
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
]
)