Skip to content

Commit

Permalink
Black-format and bump version to 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
samuell committed Feb 11, 2021
1 parent 9078cbe commit 7c58e8c
Showing 1 changed file with 19 additions and 21 deletions.
40 changes: 19 additions & 21 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,32 +6,30 @@
except:
from distutils.core import setup

with open('README.md') as fh:
with open("README.md") as fh:
long_description = fh.read()

setup(
name='flowbase',
version='0.0.1',
description='Python implementation of the FlowBase Flow-based Programming micro-framework idea (see flowbase.org)',
name="flowbase",
version="0.0.2",
description="Python implementation of the FlowBase Flow-based Programming micro-framework idea (see flowbase.org)",
long_description=long_description,
long_description_content_type='text/markdown',
author='Samuel Lampa',
author_email='[email protected]',
url='https://github.com/flowbase/flowbase-python',
license='MIT',
keywords='flow-based programming',
packages=[
'flowbase',
],
long_description_content_type="text/markdown",
author="Samuel Lampa",
author_email="[email protected]",
url="https://github.com/flowbase/flowbase-python",
license="MIT",
keywords="flow-based programming",
packages=["flowbase",],
install_requires=[],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3.5",
],
)

0 comments on commit 7c58e8c

Please sign in to comment.