-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
39 lines (32 loc) · 1.17 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
import json
from setuptools import setup, find_packages
VERSION = "$VERSION$"
REQUIREMENTS_JSON = """$REQUIREMENTS$"""
with open("README.md", "r") as f:
readme_content = f.read()
setup(
name="qqddm",
license="ISC",
author="David Lorenzo",
author_email="17401854+David-Lor@users.noreply.github.com",
url="https://github.com/David-Lor/python-qqddm",
download_url="https://github.com/David-Lor/python-qqddm/archive/main.zip",
keywords=["qq", "different dimension me", "anime", "ai"],
install_requires=json.loads(REQUIREMENTS_JSON),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: ISC License (ISCL)",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10"
],
description_file="README.md",
license_files=["LICENSE.md"],
long_description_content_type="text/markdown",
version=VERSION,
long_description=readme_content,
packages=find_packages(),
)