-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (39 loc) · 1.02 KB
/
setup.py
File metadata and controls
45 lines (39 loc) · 1.02 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env python
# coding: utf-8
from setuptools import setup, find_packages
from holiday import (
__version__,
__license__,
__author__,
__author_email__,
)
__name__ = 'holiday'
__url__ = 'https://github.com/wanshot/holiday'
__short_description__ = __name__ + ' is a package to generate holiday.'
__long_description__ = open('./README.rst', 'r').read()
__classifiers__ = [
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Development Status :: 5 - Production/Stable',
'Topic :: Software Development',
'Programming Language :: Python :: 2',
]
__keywords__ = [
'datetime',
'date',
'time',
'calendar',
]
setup(
name=__name__,
version=__version__,
description=__short_description__,
long_description=__long_description__,
url=__url__,
author=__author__,
author_email=__author_email__,
classifiers=__classifiers__,
keywords=' ,'.join(__keywords__),
license=__license__,
packages=find_packages(exclude=['tests']),
)