natazc 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- natazc-0.1.0/PKG-INFO +3 -0
- natazc-0.1.0/pyproject.toml +3 -0
- natazc-0.1.0/setup.cfg +4 -0
- natazc-0.1.0/setup.py +17 -0
- natazc-0.1.0/src/natazc/__init__.c +4881 -0
- natazc-0.1.0/src/natazc/__init__.py +1 -0
- natazc-0.1.0/src/natazc/__main__.c +5057 -0
- natazc-0.1.0/src/natazc/__main__.py +4 -0
- natazc-0.1.0/src/natazc/natazc.c +7198 -0
- natazc-0.1.0/src/natazc/natazc.py +5 -0
- natazc-0.1.0/src/natazc.egg-info/PKG-INFO +3 -0
- natazc-0.1.0/src/natazc.egg-info/SOURCES.txt +13 -0
- natazc-0.1.0/src/natazc.egg-info/dependency_links.txt +1 -0
- natazc-0.1.0/src/natazc.egg-info/not-zip-safe +1 -0
- natazc-0.1.0/src/natazc.egg-info/top_level.txt +1 -0
natazc-0.1.0/PKG-INFO
ADDED
natazc-0.1.0/setup.cfg
ADDED
natazc-0.1.0/setup.py
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
from Cython.Build import cythonize
|
|
3
|
+
import glob
|
|
4
|
+
|
|
5
|
+
setup(
|
|
6
|
+
name="natazc",
|
|
7
|
+
version="0.1.0",
|
|
8
|
+
package_dir={"": "src"},
|
|
9
|
+
packages=find_packages(where="src"),
|
|
10
|
+
ext_modules=cythonize(
|
|
11
|
+
glob.glob("src/natazc/*.py"),
|
|
12
|
+
compiler_directives={
|
|
13
|
+
"language_level": "3"
|
|
14
|
+
}
|
|
15
|
+
),
|
|
16
|
+
zip_safe=False,
|
|
17
|
+
)
|