-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (23 loc) · 856 Bytes
/
setup.py
File metadata and controls
27 lines (23 loc) · 856 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
from setuptools import setup
from version import __release__
setup(
name = 'nptime',
version = __release__,
author = 'Thomas Grenfell Smith',
author_email = 'thomathom@gmail.com',
url = 'https://github.com/tgs/nptime',
description = 'Extends datetime.time, allowing time arithmetic',
long_description = open('README.rst').read(),
license = '3-clause BSD',
keywords = 'time datetime timedelta',
py_modules = ['nptime'],
classifiers = [
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
],
test_suite = 'nose.collector',
tests_require = ['Nose'],
)