File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed
Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change 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+ )
You can’t perform that action at this time.
0 commit comments