-
Notifications
You must be signed in to change notification settings - Fork 269
/
setup.cfg
32 lines (31 loc) · 1.15 KB
/
setup.cfg
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
[metadata]
name = freezegun
version = attr: freezegun.__version__
description = Let your Python tests travel through time
long_description = file: README.rst
author = Steve Pulec
author_email = [email protected]
url = https://github.com/spulec/freezegun
project_urls =
Bug Tracker = https://github.com/spulec/freezegun/issues
Changes = https://github.com/spulec/freezegun/blob/master/CHANGELOG
Documentation = https://github.com/spulec/freezegun/blob/master/README.rst
Source Code = https://github.com/spulec/freezegun
license = Apache 2.0
classifiers =
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
[options]
packages = freezegun
python_requires = >=3.7
install_requires =
python-dateutil >= 2.7
include_package_data = true