|
1 | | -from setuptools import setup, Extension |
2 | | - |
3 | | -with open("./README.md") as f: |
4 | | - long_desc: str = f.read() |
| 1 | +from setuptools import Extension, setup |
5 | 2 |
|
6 | 3 | if __name__ == "__main__": |
7 | 4 | setup( |
8 | | - name="pointers.py", |
9 | | - version="1.4.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 | | - ], |
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 | 5 | ext_modules=[Extension("_pointers", ["./src/mod.c"])], |
| 6 | + license="MIT", |
34 | 7 | ) |
0 commit comments