-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 835 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 835 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
#!/usr/bin/env python
# encoding: utf-8
from distutils.core import setup
try:
import json
require = ''
except ImportError:
require = 'simplejson'
setup(name='uTorrent.Py',
version='0.1.1',
description='Mobile Notifications for Transmission Downloads',
author='Rob Crowther',
author_email='weilawei@gmail.com',
url='http://github.com/micahr/uTorrent.Py/',
packages=['uTorrent'],
scripts=['bin/ut2il.py'],
requires=require,
license='GNU LGPL',
classifiers = (
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Programming Language :: Python",
"Programming Language :: Python :: 2.5",
"Programming Language :: Python :: 2.6",
)
)