-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
48 lines (44 loc) · 1.51 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
48
from distutils.core import setup
from os import path
from setuptools import find_packages
from rfc import rfc
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md')) as f:
long_description = f.read()
setup(
name='rfc_reader',
version=rfc.__version__,
packages=find_packages(exclude=['tests']),
# scripts=['rfc.py'],
url='https://github.com/monsieurh/rfc_reader',
license='GPL3',
author='monsieur_h',
author_email='[email protected]',
description='Consult download and search through IETF RFC documents from your terminal',
long_description=long_description,
keywords="RFC rfc IETF rfc_reader rfc-reader",
platforms='any',
entry_points={
'console_scripts': [
'rfc = rfc.rfc:main'
]
},
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Legal Industry',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'License :: Public Domain',
'Natural Language :: English',
'Operating System :: POSIX',
'Operating System :: Unix',
'Topic :: Internet',
'Topic :: Software Development',
'Topic :: Software Development :: Debuggers',
]
)