-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (43 loc) · 1.48 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# flake8: noqa
from os import path
from setuptools import setup, find_packages
with open(path.join("tispoon", "__about__.py")) as f:
exec(f.read())
here = path.abspath(path.dirname(__file__))
with open(path.join(here, "README.md")) as f:
long_description = f.read()
setup(
name=__title__,
version=__version__,
description="Tistory blogging library using open API",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Xvezda/%s" % __title__,
author=__author__,
author_email=__email__,
classifiers=[
"Natural Language :: Korean",
"Topic :: Education :: Testing",
"Topic :: Other/Nonlisted Topic",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
entry_points="""
[console_scripts]
tispoon=tispoon.cli:main
""",
keywords="blog blogging openapi korean tistory library",
packages=find_packages(),
install_requires=["requests", "markdown2", "BeautifulSoup4"],
tests_require=["pytest", "pytest-cov"],
zip_safe=False,
)