-
Notifications
You must be signed in to change notification settings - Fork 30
/
setup.py
44 lines (41 loc) · 1.5 KB
/
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
39
40
41
42
43
44
#!/usr/bin/env python
#
# Pytt: BitTorrent Tracker using Tornado
#
# @author: Sreejith K <[email protected]>
# Created on 12th May 2011
# http://foobarnbaz.com
from setuptools import setup, find_packages
setup(
name = "Pytt",
version = "0.1.7",
packages = find_packages(),
install_requires = ['setuptools',
'tornado >= 4.0',
],
extras_require = {'test': ['nose']},
scripts = ['scripts/pytt'],
# metadata for upload to PyPI
author = "Sreejith K",
author_email = "[email protected]",
description = "A Pure Python BitTorrent Tracker using Tornado",
license = "http://www.apache.org/licenses/LICENSE-2.0",
keywords = "bittorrent tracker bencode bdecode scrape ui",
url = "http://foobarnbaz.com/lab/pytt",
zip_safe = True,
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Framework :: Tornado"
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
],
long_description = """Pytt is a simple BitTorrent tracker written
using Tornado non-blocking web server.
It also features a UI for showing tracker statistics.""",
)