|
1 | 1 | from setuptools import Extension, setup
|
2 | 2 |
|
| 3 | +with open("./README.md") as f: |
| 4 | + long_desc: str = f.read() |
| 5 | + |
3 | 6 | if __name__ == "__main__":
|
4 | 7 | 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 | + ], |
6 | 27 | 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"])], |
7 | 34 | )
|
0 commit comments