forked from ocelma/python-itunes
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
26 lines (24 loc) · 784 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
# -*- coding: utf-8 -*-
import itunes
from setuptools import setup
with open('README.md') as f:
readme = f.read()
with open('requirements.txt') as f:
requires = [line.strip() for line in f if line.strip()]
setup(
name='pitunes',
version=itunes.__version__,
description="A simple python wrapper to access iTunes Store API",
long_description=readme,
long_description_content_type="text/markdown",
author=itunes.__author__[0],
author_email=itunes.__email__[0],
maintainer=itunes.__maintainer__,
maintainer_email=itunes.__email__[0],
license='http://www.gnu.org/copyleft/gpl.html',
platforms=['any'],
url='https://github.com/vinyldarkscratch/pitunes',
packages=['itunes'],
install_requires=requires,
zip_safe=False,
)