-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
37 lines (36 loc) · 1.3 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
from setuptools import setup
from webmentiontools import __version__
setup(
version=__version__,
name="webmention-tools",
author="Panayotis Vryonis",
author_email="[email protected]",
maintainer="André Jaenisch",
maintainer_email="[email protected]",
description="Tools for webmention.org.",
long_description=open("README.rst").read(),
packages=["webmentiontools", ],
install_requires=["beautifulsoup4", "requests", "docopt"],
scripts=["bin/webmention-tools", ],
url="https://github.com/Ryuno-Ki/webmention-tools",
license="MIT",
data_files=[("", ["LICENSE.txt", ])],
platforms=["Linux", ],
keywords=["webmention"],
include_package_data=True,
project_urls={
"Code": "https://github.com/Ryuno-Ki/webmention-tools",
"Documentation": "http://webmention-tools.readthedocs.io/",
"Issue tracker": "https://github.com/Ryuno-Ki/webmention-tools/issues"
},
classifiers=[
"Development Status :: 1 - Planning",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Internet :: WWW/HTTP"
]
)