-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
44 lines (39 loc) · 1.02 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
from setuptools import find_packages, setup
from movienightbot import __version__ as bot_version
requirements = [
"discord-py @ git+https://github.com/Rapptz/discord.py.git",
"peewee",
"marshmallow",
"pyyaml",
"cinemagoer>=2022.12.27",
]
test_requirements = [
"pytest",
"pytest-asyncio",
"dpytest>=0.6",
"ruff",
]
with open("README.rst") as f:
long_description = f.read()
setup(
name="movienight-bot",
version=bot_version,
license="WTFPL",
description="Movie night suggestion and voting bot for Discord",
long_description=long_description,
author="Joshua Shorenstein",
author_email="[email protected]",
packages=find_packages(),
package_data={
"": [
"webfiles/*.html",
"webfiles/*.ico",
"webfiles/**/*.png",
"webfiles/**/*.css",
"webfiles/**/*.js",
],
},
install_requires=requirements,
tests_require=test_requirements,
extras_require={"test": test_requirements},
)