forked from emillon/mixcloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (30 loc) · 868 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
30
31
32
33
from setuptools import setup
with open("README.rst") as f:
readme = f.read()
with open("HISTORY.rst") as f:
history = f.read()
setup(
name="mixcloud",
version="0.4.0+dev",
author="Etienne Millon",
author_email="me@emillon.org",
url="https://github.com/emillon/mixcloud",
license="BSD",
packages=["mixcloud"],
install_requires=[
"python-dateutil",
"requests",
"unidecode",
"pyyaml",
],
description="Bindings for the mixcloud.com API",
long_description=readme + "\n\n" + history,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
],
)