-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 785 Bytes
/
setup.py
File metadata and controls
30 lines (27 loc) · 785 Bytes
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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="logbeam",
version="1.0",
author="Shlomo Matichin",
author_email="shlomi@stratoscale.com",
description=(
"Log posting made for automated tests environment: the framework "
"can publish logs without knowing where and how they are stored"),
keywords="testing automation logs",
url="http://packages.python.org/logbeam",
packages=['logbeam'],
long_description=read('README.md'),
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Utilities",
],
install_requires=[
"ftputil",
"pyftpdlib",
"Twisted==20.3.0",
],
zip_safe=False,
)