Skip to content

Commit e4f04d6

Browse files
committed
chore: add more information to setup.py
1 parent 12df174 commit e4f04d6

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

setup.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,20 @@
1+
import pathlib
2+
13
import setuptools
24

35
setuptools.setup(
46
name='yape',
57
version='0.1.0',
8+
url='https://github.com/guludo/yape',
9+
description='Yape - Yet another pipeline executor',
10+
long_description=(pathlib.Path(__file__).parent / 'README.rst').read_text(),
11+
long_description_content_type='text/x-rst',
612
packages=['yape'],
13+
classifiers=[
14+
'Development Status :: 3 - Alpha',
15+
'Intended Audience :: Developers',
16+
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
17+
'Programming Language :: Python :: 3',
18+
],
19+
keywords='pipeline',
720
)

0 commit comments

Comments
 (0)