-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (27 loc) · 734 Bytes
/
Copy pathsetup.py
File metadata and controls
31 lines (27 loc) · 734 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
README = '''uTorrent WEB UI API Client Library in Python'''
setup(name='py-utorrent',
version='0.1',
description='',
long_description=README,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Topic :: Internet :: Bitorrent",
],
author='Filia Tao',
author_email='Filia.Tao@gmail.com',
url='',
keywords='utorrent',
packages=['utorrent'],
include_package_data=True,
zip_safe=False,
install_requires=[
'simplejson',
],
tests_require=[
'simplejson',
],
)