-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (33 loc) · 814 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
39
40
from setuptools import setup, find_packages
from error_anonymizer import __version__
with open("README.md") as f:
readme = f.read()
setup(
name='error_anonymizer',
version=__version__,
description='Anonymize console error messages by redacting personal info',
url='https://github.com/maskedband1t/error-anonymizer',
author='Anurag Akkiraju',
author_email='[email protected]',
py_modules=['error_anonymizer'],
packages=find_packages(),
install_requires=[
'setuptools',
'click==8.1.3',
'pathlib',
],
entry_points={
'console_scripts': [
'main=error_anonymizer:main',
],
},
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
extra_test = [
'pytest>=4',
'pytest-cov>=2',
],
)