-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 1.05 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
from setuptools import find_packages, setup
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="abcmeta",
version="2.2.1",
author="Morteza NourelahiAlamdari",
author_email="[email protected]",
description="Python meta class and abstract method library with restrictions.",
long_description=long_description,
long_description_content_type="text/markdown",
license="AGPLv3",
url="https://github.com/mortymacs/abcmeta",
project_urls={"Bug Tracker": "https://github.com/mortymacs/abcmeta/issues"},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: OS Independent",
],
packages=find_packages(),
python_requires=">=3.9",
)