-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 836 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 836 Bytes
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
from setuptools import setup
setup(
name='datetime_utils',
version='0.1',
license='MIT',
packages=[
'datetime_utils',
],
url='https://github.com/annp89/datetime_utils',
author='Ann Paul',
author_email='ann.mpaul@gmail.com',
description='Python functions for common operations on datetime instances.',
install_requires=[
'pytz>=2014.10',
],
classifiers=[
'Topic :: Utilities',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
],
keywords='python datetime pytz timezone timedelta arithmetic round floor period conversion',
test_suite='nose.collector',
tests_require=[
'coverage==3.7.1',
'nose>=1.3.0',
],
)