-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
38 lines (35 loc) · 1.41 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
import os
from setuptools import setup, find_packages
this_dir = os.path.dirname(__file__)
setup(
name='mailinglogger',
version=open(os.path.join(this_dir,'mailinglogger','version.txt')).read().strip(),
author='Chris Withers',
author_email='[email protected]',
license='MIT',
description="Enhanced emailing handlers for the python logging package.",
long_description=open(os.path.join(this_dir,'docs','description.txt')).read(),
url='https://github.com/Simplistix/mailinglogger',
keywords="logging email",
classifiers=[
'Development Status :: 6 - Mature',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Topic :: Communications :: Email',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Logging',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
packages=find_packages(),
package_data={'mailinglogger': ['*.txt']},
python_requires=">=3.7",
extras_require=dict(
test=['pytest', 'pytest-cov', 'sybil', 'testfixtures'],
build=['sphinx', 'wheel', 'twine', 'sphinx_rtd_theme'],
)
)