-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
47 lines (41 loc) · 1.28 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
44
45
46
47
from setuptools import setup
from setuptools import find_packages
from elfws import version
def readme():
with open('README.rst') as f:
return f.read()
setup(
name='elfws',
version=version.version,
description='EDA Log File Warning Suppressor',
long_description=readme(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Programming Language :: Python :: 3',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Text Processing :: General',
],
url='https://github.com/jeremiah-c-leary/eda-log-file-warning-suppressor',
download_url='https://github.com/jeremiah-c-leary/eda-log-file-warning-suppressor',
author='Jeremiah C Leary',
author_email='jeremiah.c.leary@gmail.com',
license='GNU General Public License',
packages=find_packages(),
zip_safe=False,
test_suite='nose.collector',
tests_require=['nose'],
keywords=['eda', 'warning', 'suppression', 'logfile'],
install_requires=[
'PyYAML'
],
entry_points={
'console_scripts': [
'elfws = elfws.__main__:main'
]
}
)