forked from arrow-py/arrow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 892 Bytes
/
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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='arrow',
version='0.4.4',
description='Better dates and times for Python',
url='http://crsmithdev.com/arrow',
author='Chris Smith',
author_email="[email protected]",
license='Apache 2.0',
packages=['arrow'],
zip_safe=False,
install_requires=[
'python-dateutil'
],
test_suite="tests",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)