forked from revchris/pybtsync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 1.23 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name = "pybtsync",
version = "0.0.2",
description = "A Python module for the BitTorrent Sync API.",
long_description = open('README.rst').readline(),
author = "Tiago Macarios",
author_email = "tiagomacarios <at> the google email",
url = "https://github.com/tiagomacarios/pybtsync",
download_url = "https://github.com/tiagomacarios/pybtsync",
packages = find_packages(), #['pybtsync',],
install_requires = ['requests'],
license = open('LICENSE').readline(),
keywords = "bittorrent sync api",
classifiers = [ "Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet",
"Topic :: Software Development",
"Topic :: Utilities",
] # https://pypi.python.org/pypi?%3Aaction=list_classifiers
)