-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
24 lines (23 loc) · 932 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
from setuptools import setup
setup(name='pylsdj',
version='2.3.3',
description='A utility belt for dealing with LSDJ-related files',
url='http://github.com/alexras/pylsdj',
author='Alex Rasmussen',
author_email='[email protected]',
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules'],
license='MIT',
packages=['pylsdj', 'pylsdj.vendor'],
requires=['bread'],
install_requires=['bread>=2.1.0'],
zip_safe=False)