20 lines
670 B
Diff
20 lines
670 B
Diff
--- cppy-1.2.1/setup.py 2022-03-31 03:40:07.000000000 +0800
|
|
+++ cppy-1.2.0/setup.py 2022-08-03 09:10:34.806143523 +0800
|
|
@@ -7,4 +7,15 @@
|
|
# ------------------------------------------------------------------------------
|
|
from setuptools import setup
|
|
|
|
-setup()
|
|
+setup(
|
|
+ name="cppy",
|
|
+ version="1.2.1",
|
|
+ author="The Nucleic Development Team",
|
|
+ author_email="sccolbert@gmail.com",
|
|
+ maintainer_email="m.dartiailh@gmail.com",
|
|
+ url="https://github.com/nucleic/cppy",
|
|
+ description="C++ headers for C extension development",
|
|
+ long_description=open("README.rst").read(),
|
|
+ packages=["cppy"],
|
|
+ package_data={"cppy": ["include/cppy/*.h"]},
|
|
+)
|