Skip to content

Commit 7c58e8c

Browse files
committed
Black-format and bump version to 0.0.2
1 parent 9078cbe commit 7c58e8c

File tree

1 file changed

+19
-21
lines changed

1 file changed

+19
-21
lines changed

setup.py

Lines changed: 19 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -6,32 +6,30 @@
66
except:
77
from distutils.core import setup
88

9-
with open('README.md') as fh:
9+
with open("README.md") as fh:
1010
long_description = fh.read()
1111

1212
setup(
13-
name='flowbase',
14-
version='0.0.1',
15-
description='Python implementation of the FlowBase Flow-based Programming micro-framework idea (see flowbase.org)',
13+
name="flowbase",
14+
version="0.0.2",
15+
description="Python implementation of the FlowBase Flow-based Programming micro-framework idea (see flowbase.org)",
1616
long_description=long_description,
17-
long_description_content_type='text/markdown',
18-
author='Samuel Lampa',
19-
author_email='[email protected]',
20-
url='https://github.com/flowbase/flowbase-python',
21-
license='MIT',
22-
keywords='flow-based programming',
23-
packages=[
24-
'flowbase',
25-
],
17+
long_description_content_type="text/markdown",
18+
author="Samuel Lampa",
19+
author_email="[email protected]",
20+
url="https://github.com/flowbase/flowbase-python",
21+
license="MIT",
22+
keywords="flow-based programming",
23+
packages=["flowbase",],
2624
install_requires=[],
2725
classifiers=[
28-
'Development Status :: 3 - Alpha',
29-
'Environment :: Console',
30-
'Intended Audience :: Science/Research',
31-
'License :: OSI Approved :: MIT License',
32-
'Natural Language :: English',
33-
'Operating System :: POSIX :: Linux',
34-
'Programming Language :: Python',
35-
'Programming Language :: Python :: 3.5',
26+
"Development Status :: 3 - Alpha",
27+
"Environment :: Console",
28+
"Intended Audience :: Science/Research",
29+
"License :: OSI Approved :: MIT License",
30+
"Natural Language :: English",
31+
"Operating System :: POSIX :: Linux",
32+
"Programming Language :: Python",
33+
"Programming Language :: Python :: 3.5",
3634
],
3735
)

0 commit comments

Comments
 (0)