-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Black-format and bump version to 0.0.2
- Loading branch information
Showing
1 changed file
with
19 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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", | ||
], | ||
) |