forked from moogar0880/pytagger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (22 loc) · 773 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
from setuptools import setup
packages = ['pytagger']
with open('requirements.txt') as f:
requires = [line.strip() for line in f if line.strip()]
setup(name='pytagger',
version='1.1.2',
description='A python backend to iTunes style metadata tagging',
author='Jonathan Nappi',
author_email='[email protected]',
maintainer='Jonathan Nappi',
maintainer_email='[email protected]',
license='http://www.gnu.org/copyleft/gpl.html',
package_dir={'pytagger': 'pytagger'},
platforms=['OS X'],
url='https://github.com/moogar0880/pytagger',
packages=packages,
install_requires=requires,
zip_safe=False,
entry_points={
'console_scripts': ['tag = pytagger.main:main']
},
)