-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
26 lines (24 loc) · 907 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from setuptools import setup
from pypi2cwl import __version__
setup(name="pypi2cwl",
version=__version__,
description='Instrument for extracting tools from PyPi packages and generating CWL tool descriptions',
author='Anton Khodak',
author_email='[email protected]',
install_requires=[],
url='https://github.com/common-workflow-language/pypi2cwl',
packages=["pypi2cwl"],
entry_points={
'console_scripts': [
'pypi2cwl = pypi2cwl.pypi2cwl:main',
]
},
classifiers=[
'Development Status :: 3 - Alpha',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Environment :: Console',
'License :: OSI Approved :: Apache Software License',
],
include_package_data=True,
)