Skip to content

Commit 6f41609

Browse files
committed
add some more metadata to setup.py
1 parent 8fd7516 commit 6f41609

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

setup.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,9 +212,20 @@ def run(self):
212212
CMDCLASS = {}
213213

214214

215+
def readme():
216+
with open('README.rst') as f:
217+
return f.read()
218+
219+
215220
setup(
216221
name='PyCygwin',
217222
version='0.1',
223+
author='E. M. Bray',
224+
author_email='[email protected]',
225+
url='https://github.com/embray/PyCygwin',
226+
description="Python bindings for Cygwin's C API",
227+
long_description=readme(),
228+
license='BSD',
218229
packages=['cygwin'],
219230
ext_modules=EXT_MODULES,
220231
cmdclass=CMDCLASS

0 commit comments

Comments
 (0)