-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 928 Bytes
/
setup.py
File metadata and controls
34 lines (32 loc) · 928 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
import setuptools
try:
with open('README.md', 'rt', encoding='UTF8') as fh:
long_description = fh.read()
except IOError as e:
long_description = ""
setuptools.setup(
name="dc_api",
version="0.8.1",
author="Eunchul, Song",
author_email="eunchulsong9@gmail.com",
description="Deadly dimple unofficial dcinside api",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/song9446/dcinside-python3-api",
#packages=setuptools.find_packages(),
py_modules=['dc_api'],
install_requires=[
'lxml',
'aiohttp',
'tenacity',
],
entry_points = """
[console_scripts]
dc_api = dc_api:dc_api
""",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)