forked from pganssle/bdateutil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (46 loc) · 1.73 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# bdateutil
# -----------
# Adds business day logic and improved data type flexibility to
# python-dateutil. 100% backwards compatible with python-dateutil,
# simply replace dateutil imports with bdateutil.
#
# Author: ryanss <[email protected]>
# Website: https://github.com/ryanss/bdateutil
# License: MIT (see LICENSE file)
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='bdateutil',
version='0.2-dev',
author='ryanss',
author_email='[email protected]',
url='https://github.com/ryanss/bdateutil',
license='MIT',
packages=['bdateutil'],
description=("Adds business day logic and improved data type flexibility "
"to python-dateutil."),
long_description=open('README.rst').read(),
install_requires=['python-dateutil', 'holidays'],
platforms='any',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Office/Business :: Scheduling',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Localization',
],
)