-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (28 loc) · 1.51 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
#!/usr/bin/env python
from setuptools import setup
setup(name='propertime',
version='1.0.1',
description='An attempt at proper time management in Python.',
long_description="""
Propertime is an attempt to implement proper time management in Python. Its approach
is to fully embrace the extra complexity arising due to the intrinsic need of conflating
together physical and calendar time, instead of oversimplifying or dismissing it.
In a nutshell, it provides two main classes: the ``Time`` class for representing
time (similar to a datetime) and the ``TimeSpan`` class for representing units
of time (similar to a timedelta). Such classes play nice with Python datetimes so
that you can mix and match and use them only when needed.
You can have a look at the [README](https://github.com/sarusso/Propertime/blob/main/README.md)
for a better introduction together with some usage examples, and you can get started by having
a look at the [quickstart notebook](https://github.com/sarusso/Propertime/blob/main/Quickstart.ipynb)
or by reading the [reference documentation](https://propertime.readthedocs.io).
""",
long_description_content_type='text/markdown',
url="https://github.com/sarusso/Propertime",
author='Stefano Alberto Russo',
packages=['propertime','propertime.tests'],
package_data={},
install_requires = ['python-dateutil >=2.8.2, <3.0.0', 'pytz'],
license='Apache License 2.0',
license_files = ('LICENSE',),
)