-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (31 loc) · 876 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
31
32
33
34
35
36
37
38
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
ttcal - calendar operations
"""
classifiers = """\
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Programming Language :: Python
Programming Language :: Python :: 3
Topic :: Software Development :: Libraries
"""
import os
import setuptools
version = '2.0.5'
DIRNAME = os.path.dirname(__file__)
description = open(os.path.join(DIRNAME, 'README.rst'), 'r').read()
setuptools.setup(
name='ttcal',
version=version,
url='https://github.com/datakortet/ttcal',
author='Bjorn Pettersen',
author_email='bp@datakortet.no',
requires=[],
install_requires=[],
description=__doc__.strip(),
long_description=description,
classifiers=[line for line in classifiers.split('\n') if line],
packages=setuptools.find_packages(exclude=['tests']),
zip_safe=False,
)