forked from AhnSeongHyun/daum_openapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·34 lines (30 loc) · 972 Bytes
/
setup.py
File metadata and controls
executable file
·34 lines (30 loc) · 972 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
31
32
33
34
from setuptools import setup, find_packages
import sys, os
version = '0.1'
setup(name='daum_openapi',
version=version,
description="Python Library of Daum Open Data API",
long_description=open("pip_desc.txt").read() + "\n",
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Topic :: Text Processing :: Markup :: HTML',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='daum openapi',
author='SeongHyun.Ahn',
author_email='sh84.ahn@gmail.com',
url='https://github.com/AhnSeongHyun/daum_openapi',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
'xmltodict',
'requests'
],
entry_points="""
# -*- Entry points: -*-
""",
)