-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 715 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (26 loc) · 715 Bytes
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
#!/usr/bin/env python3
'''
Prueba de progreso #1: cliente y servidor REST
'''
__version__ = '0.1'
__license__ = 'GPLv3'
__author__ = 'Alumno'
__email__ = 'alumno@alu.uclm.es'
from setuptools import setup
setup(
name='Restful dict',
version=__version__,
description=__doc__,
author=__author__,
author_email=__email__,
license=__license__,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Topic :: Software Development :: Networking',
'License :: OSI Approved :: GPLv3 License',
'Programming Language :: Python :: 3'
],
keywords='networking development',
)