-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
28 lines (26 loc) · 990 Bytes
/
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
from setuptools import setup
setup(
name='rextester_py',
version='0.0.2',
url='https://github.com/nitanmarcel/rextester_py',
license='MIT',
author='nitanmarcel',
author_email='nitan.marcel@gmail.com',
description='Simple Python interface for rextester.com, using aiohttp/requests',
long_description='Simple Python interface for rextester.com, using aiohttp/requests',
packages=['rextester_py'],
zip_safe=False,
platforms='any',
install_requires=[
'aiohttp',
'requests'],
include_package_data=True,
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'])