-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (36 loc) · 1.18 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, find_packages
setup(
name="pastezi",
author="L. Kärkkäinen",
author_email="tronic@noreply.users.github.com",
description="A pastebin that doesn't suck",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/Tronic/pastezi",
packages=find_packages(),
keywords=["pastebin", "sanic"],
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"License :: Public Domain",
"Operating System :: OS Independent",
],
python_requires = ">=3.9",
use_scm_version=True,
setup_requires = ["setuptools_scm"],
install_requires = [
"sanic>=22.12",
"redis>=4.2.0",
"pygments",
"metaphone",
"nltk",
"pronounceable",
],
package_data={"": ["static/**"]},
include_package_data = True,
)