forked from eLBati/CBI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 773 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
setup(name='cbi',
version='0.3',
packages=find_packages(),
description='CBI flows wrapper',
author='Lorenzo Battistini',
author_email='lorenzo.battistini@agilebg.com',
url='https://github.com/eLBati/CBI',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Plugins',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Office/Business',
],
long_description=open('README.rst').read(),
license='GPL-3',
)