Upload setup.py
Browse files
setup.py
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from setuptools import setup, find_packages
|
| 2 |
+
|
| 3 |
+
setup(
|
| 4 |
+
name="ncodec",
|
| 5 |
+
version="0.0.22", # <--- Add your desired version here
|
| 6 |
+
classifiers=[
|
| 7 |
+
"Programming Language :: Python :: 3",
|
| 8 |
+
"License :: OSI Approved :: MIT License",
|
| 9 |
+
"Operating System :: OS Independent",
|
| 10 |
+
],
|
| 11 |
+
python_requires=">=3.9",
|
| 12 |
+
packages=find_packages(), # Generally good practice to include
|
| 13 |
+
)
|