forked from HyperionGray/opsechat
-
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) · 724 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import os
from setuptools import setup, find_packages
setup(
name = 'dropchat',
version = '0.3.0',
description = 'DropChat',
long_description = 'Drop Chat - Secure Disposable Chat',
url = '',
license = 'MIT',
author = 'Alejandro Caceres',
packages = [''],
include_package_data = True,
package_data = {'': ['templates/*.html']},
install_requires = ["flask", "stem"],
classifiers = [ 'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3',
'Programming Language :: Python'],
entry_points = { 'console_scripts':
[ 'dropchat = runserver:main']}
)