We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2d1fd3 commit 1970075Copy full SHA for 1970075
setup.py
@@ -3,5 +3,16 @@
3
4
setup(
5
name='cstring',
6
- ext_modules=[Extension('cstring', sources=['src/cstring.c'])]
+ version='0.1.0',
7
+ author='Andrew Palmer',
8
+ author_email='atp@sdf.org',
9
+ description='String implementation based on UTF-8 C-strings',
10
+ long_description=open('README.md').read(),
11
+ long_description_content_type='text/markdown',
12
+ url='https://github.com/atpalmer-python/python-cstring',
13
+ ext_modules=[Extension('cstring', sources=['src/cstring.c'])],
14
+ classifiers=[
15
+ ],
16
+ python_requires='>=3.6',
17
)
18
+
0 commit comments