-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 815 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 815 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
from setuptools import setup
setup(
name='requestify',
version='0.0.1',
url='https://github.com/ggabarrin/requestify',
license='MIT License',
author='Guillermo Gabarrin',
install_requires=[
'Jinja2>=2.10',
],
author_email='g.gabarrin@gmail.com',
description='Generate request code from raw HTTP request',
packages=['requestify'],
include_package_data=True,
platforms='any',
classifiers=[
'Programming Language :: Python',
'Natural Language :: English',
'Intended Audience :: Developers',
'License :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Libraries :: Application Frameworks',
],
)