-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (34 loc) · 1019 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
30
31
32
33
34
35
36
37
38
import os
from setuptools import setup
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as buf:
return buf.read()
setup(name='coffer',
version='0.3',
description='Easily send and receive files in your LAN. '
'Without ever typing an IP address.',
long_description=read('README.rst'),
author='boyska',
author_email='piuttosto@logorroici.org',
license='GPL3',
packages=['coffer'],
install_requires=[
'gevent',
'zeroconf',
'flask-appconfig',
'requests',
'Flask'
],
include_package_data=True,
zip_safe=False,
entry_points={
'console_scripts': ['coffer=coffer.cli:main']
},
classifiers=[
"Framework :: Flask",
"License :: OSI Approved :: "
"GNU General Public License v3 or later (GPLv3+)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 2"
]
)