-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
43 lines (39 loc) · 1.71 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Setup module for the duallog package
This module configures setuptools so that it can create a distribution for the
package.
"""
# Import required standard libraries.
import io
import os
import setuptools
# Load the readme.
maindir = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(maindir, 'README.md'), encoding='utf-8') as file:
readme = file.read()
# Configure setuptools.
setuptools.setup(name='duallog',
version='0.20',
description='Parallel logging to console and logfile',
long_description=readme,
long_description_content_type='text/markdown',
license='MIT',
url='https://github.com/acschaefer/duallog',
author='Alexander Schaefer',
author_email='[email protected]',
maintainer='Alexander Schaefer',
include_package_data=False,
packages=['duallog'],
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Operating System :: OS Independent'])