24 lines
686 B
Python
24 lines
686 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='mergeobject',
|
|
version="0.1.0",
|
|
package_dir={'mergeobject': 'mergeobject'},
|
|
packages=['mergeobject'],
|
|
description='',
|
|
long_description='',
|
|
author='James Turk',
|
|
author_email='james.p.turk@gmail.com',
|
|
license='BSD',
|
|
url='https://github.com/jamesturk/django-mergeobject/',
|
|
platforms=["any"],
|
|
classifiers=[
|
|
'License :: OSI Approved :: BSD License',
|
|
'Programming Language :: Python',
|
|
'Programming Language :: Python :: 2',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.4',
|
|
],
|
|
)
|