-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 1.01 KB
/
Copy pathsetup.py
File metadata and controls
28 lines (27 loc) · 1.01 KB
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
from setuptools import setup
setup(
name='virtualtime',
version='1.6',
packages=['virtualtime', 'virtualtime.datetime_tz'],
license='Apache License, Version 2.0',
description='Implements a system for simulating a virtual time.',
long_description=open('README.md').read(),
url='http://www.j5int.com/',
author='j5 International',
author_email='support@j5int.com',
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Apache Software License',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 2 :: Only',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Testing',
],
install_requires = ['python-datetime-tz >= 0.5'],
extras_require = {
'tests': ["nose", 'decorator'],
},
)