forked from usernein/pyromod
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (30 loc) · 1 KB
/
setup.py
File metadata and controls
36 lines (30 loc) · 1 KB
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
import re
import setuptools
with open("README.md") as fp:
long_description = fp.read()
requirements = ["kurigram>=2.0.69"]
# pyright: reportOptionalSubscript=false
with open(r"patchpyro\__init__.py") as fp:
contents = fp.read()
version = re.search(r"__version__ = ['\"]([^'\"]+)['\"]", contents)[1]
setuptools.setup(
name="patchpyro",
version=version,
author="Cezar H. & adityaprasad502",
author_email="plutoniumx502@gmail.com",
license="LGPLv3+",
description="A modified pyromod by a.devh.in",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/adityaprasad502/patchpyro",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Operating System :: OS Independent",
],
python_requires=">=3.9",
install_requires=[
"kurigram>=2.0.69",
],
)