|
6 | 6 | except: |
7 | 7 | from distutils.core import setup |
8 | 8 |
|
9 | | -with open('README.md') as fh: |
| 9 | +with open("README.md") as fh: |
10 | 10 | long_description = fh.read() |
11 | 11 |
|
12 | 12 | 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)", |
16 | 16 | long_description=long_description, |
17 | | - long_description_content_type='text/markdown', |
18 | | - author='Samuel Lampa', |
19 | | - author_email='samuel.lampa@rilnet.com', |
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="samuel.lampa@rilnet.com", |
| 20 | + url="https://github.com/flowbase/flowbase-python", |
| 21 | + license="MIT", |
| 22 | + keywords="flow-based programming", |
| 23 | + packages=["flowbase",], |
26 | 24 | install_requires=[], |
27 | 25 | 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", |
36 | 34 | ], |
37 | 35 | ) |
0 commit comments