forked from Floobits/flootty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (26 loc) · 835 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/env python
from setuptools import find_packages, setup
from flootty import version
setup(name='Flootty',
version=version.FLOOTTY_VERSION,
description='Floobits collaborative terminal',
author='Floobits',
author_email='[email protected]',
url='https://floobits.com/',
license="Apache2",
packages=find_packages(),
package_data={
'': ['README.md']
},
entry_points={
'console_scripts': [
'flootty = flootty.flootty:main',
]},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Topic :: Terminals',
'Topic :: Utilities',
])