-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (43 loc) · 1.27 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
import setuptools
from glob import glob
from os.path import basename
from os.path import splitext
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="dipbot",
version="0.11",
author="circius",
author_email="[email protected]",
description="webdiplomacy status reporter bot for discord",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/circius/webdiplomacy-bot",
download_url="https://github.com/circius/webdiplomacy-bot/archive/0.11.tar.gz",
packages=setuptools.find_packages("src"),
package_dir={"": "src"},
py_modules=[splitext(basename(path))[0] for path in glob("src/*.py")],
include_package_data=True,
zip_safe=False,
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Topic :: Utilities",
],
keywords=["webdiplomacy", "bot", "discord"],
python_requires=">=3.6",
setup_requires=["pytest-runner",],
install_requires=[
"discord.py",
"requests",
"bs4",
"pytz",
"lxml",
"Click",
],
entry_points="""
[console_scripts]
dipbot=dipbot.cli:cli
""",
)