-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
39 lines (37 loc) · 1.23 KB
/
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
30
31
32
33
34
35
36
37
38
39
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name = 'web_terminal',
packages = ['web_terminal'],
package_dir = {'': 'server'},
include_package_data = True,
version = '0.2.2',
license = 'BSD3',
description = 'Web_Terminal is a server that gives an easy web-based interface to a terminal window, with plenty of nice features', #TODO
long_description=long_description,
long_description_content_type="text/markdown",
maintainer = 'John Meyer',
maintainer_email = '[email protected]',
url = 'https://danielle-galvao.github.io/web-terminal/',
keywords = ['web', 'terminal'],
install_requires = [
'flask',
'websockets',
'pkg_resources'
],
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
#TODO add 'Topic :: '
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3', #TODO
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)