forked from HackerEarth/he-sdk-python
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (22 loc) · 718 Bytes
/
setup.py
File metadata and controls
27 lines (22 loc) · 718 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
REQUIREMENTS = [
'requests'
]
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Internet',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
]
setup(name='he-sdk-python',
version='0.3',
description='Python client for HackerEarth Code Checker API v3',
url='https://github.com/HackerEarth/he-sdk-python',
author='Praveen Kumar',
author_email='praveen@hackerearth.com',
license='MIT',
packages=['hackerearth'],
classifiers=CLASSIFIERS,
keywords='hackerarth code cheker api python client', install_requires=['requests']
)