-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
executable file
·65 lines (61 loc) · 1.96 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#! /usr/bin/env python3
import os
from setuptools import find_packages, setup
test_deps = [
'psycopg2-binary <= 2.8.6',
'pytest >= 6.0.2',
'pytest-pythonpath>=0.7.3',
'pytest-echo>=1.7.1',
'pytest-coverage',
'pytest-django >= 3.7.0',
'tox >= 3.14.3',
'tox-pyenv >= 1.1.0',
'bump2version >= 1.0.0',
'flake8 >= 3.8.3',
'isort >= 5.5.3',
'mysqlclient >= 2.0.1'
]
setup(
name='django-relativedelta',
version='2.0.0',
package_dir={'': 'src'},
packages=find_packages('src'),
include_package_data=True,
license='MIT License',
description='Django alternative to DurationField using dateutil.relativedelta',
long_description=open('README.rst').read(),
url='https://github.com/CodeYellowBV/django-relativedelta',
keywords='django, ',
setup_requires=[],
author='Code Yellow B.V.',
test_suite='tests',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.0',
'Framework :: Django :: 4.1',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Database',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=[
'Django >= 1.10',
'python-dateutil >= 2.6.0',
],
tests_require=test_deps,
extras_require={
'test': test_deps,
}
)