-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·36 lines (31 loc) · 831 Bytes
/
setup.py
File metadata and controls
executable file
·36 lines (31 loc) · 831 Bytes
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
import os
from distutils.core import setup
def read(relpath: str) -> str:
with open(os.path.join(os.path.dirname(__file__), relpath)) as f:
return f.read()
setup(
name = 'logwood',
version = read('version.txt').strip(),
description = 'Simple, but fast logging library for Python 3.5+',
long_description = read('README.rst'),
author = 'Quantlane',
author_email = 'code@quantlane.com',
url = 'https://github.com/qntln/logwood',
license = 'Apache 2.0',
packages = [
'logwood',
'logwood.handlers',
],
entry_points = {
'pytest11': [
'logwood = logwood.testing'
]
},
classifiers = [
'Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.5',
]
)