Skip to content

Commit b26c51c

Browse files
committed
i hate build systems
1 parent a486c56 commit b26c51c

File tree

2 files changed

+29
-2
lines changed

2 files changed

+29
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ classifiers = [
2323
dependencies = [
2424
"typing_extensions",
2525
]
26-
version="2.0.0-alpha"
26+
version="2.0.0"
2727

2828
[project.urls]
2929
Documentation = "https://pointers.zintensity.dev"

setup.py

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,34 @@
11
from setuptools import Extension, setup
22

3+
with open("./README.md") as f:
4+
long_desc: str = f.read()
5+
36
if __name__ == "__main__":
47
setup(
5-
ext_modules=[Extension("_pointers", ["./src/mod.c"])],
8+
name="pointers.py",
9+
version="2.0.0",
10+
author="ZeroIntensity",
11+
author_email="<zintensitydev@gmail.com>",
12+
description="Bringing the hell of pointers to Python.",
13+
long_description_content_type="text/markdown",
14+
long_description=long_desc,
15+
packages=["pointers"],
16+
keywords=["python", "pointers"],
17+
install_requires=["typing_extensions"],
18+
classifiers=[
19+
"Programming Language :: Python :: 3.6",
20+
"Programming Language :: Python :: 3.7",
21+
"Programming Language :: Python :: 3.8",
22+
"Programming Language :: Python :: 3.9",
23+
"Programming Language :: Python :: 3.10",
24+
"Programming Language :: Python :: 3.11",
25+
"Programming Language :: Python :: Implementation :: CPython",
26+
],
627
license="MIT",
28+
project_urls={
29+
"Source": "https://github.com/ZeroIntensity/pointers.py",
30+
"Documentation": "https://pointerspy.netlify.app/",
31+
},
32+
package_dir={"": "src"},
33+
ext_modules=[Extension("_pointers", ["./src/mod.c"])],
734
)

0 commit comments

Comments
 (0)