Skip to content

Commit d0e618d

Browse files
committed
Add setup.py
1 parent 6270c62 commit d0e618d

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

setup.py

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
import os
2+
import sys
3+
4+
try:
5+
from setuptools import setup
6+
except:
7+
from distutils.core import setup
8+
9+
with open('README.md') as fh:
10+
long_description = fh.read()
11+
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)',
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+
],
26+
install_requires=[],
27+
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',
36+
],
37+
)

0 commit comments

Comments
 (0)