forked from workalendar/workalendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
63 lines (55 loc) · 1.6 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
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/usr/bin/env python
#-*- coding: utf-8 -*-
import io
from os.path import join, dirname, abspath
import sys
PY2 = sys.version_info[0] == 2
try:
from setuptools import setup
except ImportError:
from distutils.core import setup # NOQA
def read_relative_file(filename):
"""Returns contents of the given file, whose path is supposed relative
to this module."""
path = join(dirname(abspath(__file__)), filename)
with io.open(path, encoding='utf-8') as f:
return f.read()
NAME = 'workalendar'
DESCRIPTION = 'Worldwide holidays and working days helper and toolkit.'
REQUIREMENTS = [
'python-dateutil',
'lunardate',
'pytz',
'pyCalverter',
]
__VERSION__ = '0.3-dev'
if PY2:
REQUIREMENTS.append('pyephem')
else:
REQUIREMENTS.append('ephem')
params = dict(
name=NAME,
description=DESCRIPTION,
packages=['workalendar'],
version=__VERSION__,
long_description=read_relative_file('README.rst'),
author='Bruno Bord',
author_email='bruno.bord@novapost.fr',
url='https://github.com/novapost/workalendar',
license='MIT License',
include_package_data=True,
install_requires=REQUIREMENTS,
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
],
)
if __name__ == '__main__':
setup(**params)