forked from squirrelo/MovieNightBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (28 loc) · 920 Bytes
/
setup.py
File metadata and controls
33 lines (28 loc) · 920 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
from setuptools import find_packages, setup
from movienightbot import __version__ as bot_version
requirements = ["discord", "peewee", "marshmallow", "pyyaml", "imdbpy"]
test_requirements = ["pytest", "pytest-black", "pytest-flake8"]
with open("README.rst") as f:
long_description = f.read()
setup(
name="movienight-bot",
version=bot_version,
license="BSD",
description="Movie night suggestion and voting bot for Discord",
long_description=long_description,
author="Joshua Shorenstein",
author_email="squirrelo@gmail.com",
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},
)