-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
46 lines (40 loc) · 1.47 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
# -*- coding: utf8 -*-
# vim:set et ts=8 sw=4:
import setuptools
import fetch_ethercodes
with open('README.md', encoding='utf-8') as readme:
long_description = readme.read()
long_description_content_type = 'text/markdown',
name = 'fetch-ethercodes'
description = 'Fetch and generate ethercodes data for arpwatch'
setup_params = dict(
name = name,
version = fetch_ethercodes.__version__,
author = fetch_ethercodes.__author__,
author_email = fetch_ethercodes.__email__,
description = description or name,
long_description = long_description,
long_description_content_type = long_description_content_type,
url = 'https://github.com/frispete/' + name,
license = fetch_ethercodes.__license__,
# entry points don't like python modules containing dashes :-(
py_modules = ['fetch_ethercodes'],
python_requires = '>=3',
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
entry_points = {
'console_scripts': [
'fetch-ethercodes = fetch_ethercodes:main',
'query-ethercodes = query_ethercodes:main',
],
},
)
if __name__ == '__main__':
setuptools.setup(**setup_params)