-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
32 lines (29 loc) · 1006 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (c) 2008-2014 Erik Svensson <erik.public@gmail.com>
# Copyright (c) 2019 Janne K <0x022b@gmail.com>
# Licensed under the MIT license.
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="transmissionrpc-ng",
version="0.14.1",
author="Janne K",
author_email="0x022b@gmail.com",
description="Python module that implements the Transmission BitTorent client RPC protocol.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/0x022b/transmissionrpc-ng",
keywords="transmission bittorent torrent",
packages=["transmissionrpc"],
test_suite="test",
zip_safe=True,
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Communications :: File Sharing",
"Topic :: Internet",
],
python_requires=">=3.6",
)