-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
29 lines (26 loc) · 835 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
#!/usr/bin/env python
from setuptools import setup, find_packages
with open('README.rst') as file:
long_description = file.read()
setup(
name = "xunlei",
version = "0.1.2",
license = 'BSD',
description = "Basic API for Xunlei Lixian",
long_description=long_description,
author='Ivan Diao',
author_email='[email protected]',
url='http://github.com/adieu/xunlei',
py_modules = ['xunlei'],
scripts = ['xunlei_cli'],
install_requires = ['BeautifulSoup', 'mechanize'],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Utilities",
"Topic :: Communications :: File Sharing",
],
)