forked from kimtree/hyapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (26 loc) · 858 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
29
# -*- coding: utf-8 -*-
from setuptools import setup
setup(name='hyapi',
version='0.0.1',
description='Python SDK for Hanyang Univ API',
url='https://github.com/HYLionLab/hyapi.git',
author='Lionlab',
author_email='[email protected]',
license='MIT',
packages=['hyapi'],
zip_safe=False,
install_requires=[
'pycrypto',
'requests'
],
keywords='Hanyang University',
classifiers=[
'Development Status :: 3 - Pre-Alpha',
'Topic :: Software Development :: Libraries',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7'
])