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 12df174 commit e4f04d6Copy full SHA for e4f04d6
setup.py
@@ -1,7 +1,20 @@
1
+import pathlib
2
+
3
import setuptools
4
5
setuptools.setup(
6
name='yape',
7
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',
12
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',
20
)
0 commit comments