forked from METAVar/AutonomoTorrent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 lines (51 loc) · 1.46 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
45
46
47
48
49
50
51
52
53
54
55
56
from distribute_setup import use_setuptools
use_setuptools()
import os
import shutil
import autonomotorrent
from setuptools import setup, find_packages
# Start with a clean slate to prevent side-effects
if os.path.exists('dist/'): shutil.rmtree('dist/')
if os.path.exists('build/'): shutil.rmtree('build/')
setup(
name = "AutonomoTorrent",
version = autonomotorrent.__version__,
author = "Josh S. Ziegler",
author_email = "[email protected]",
description = "AutonomoTorrent %s" % autonomotorrent.__version__,
long_description = """A minimal, pure-python BitTorrent client.
Supports:
- DHT
- Multi-trackers
""",
license = "GPLv3",
keywords = "bittorrent client",
url = "http://github.com/joshsziegler/AutonomoTorrent",
classifiers = [
'Topic :: Internet',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License (GPL)',
],
# End Meta-Data
packages = find_packages(),
scripts = [],
entry_points = {
'console_scripts': [
'autonomo = autonomotorrent.__main__:console',
],
'gui_scripts':[
]
},
install_requires = [
'Twisted >= 10.2',
],
package_data = {
'': ['*.markdown'],
},
exclude_package_data = {
'': [],
},
zip_safe = True,
)