forked from anthony-tresontani/django-adaptors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 780 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
#!/usr/bin/env python
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='django-adaptors',
version='0.2.5',
description='Convert CSV/XML files into python object or django model',
author='Anthony Tresontani',
author_email='[email protected]',
long_description=read('README.txt'),
license="BSD",
keywords="CSV XML Django adaptor",
packages=['adaptor'],
install_requires=[
'Django>=1.4',
],
extras_require={
'XML': ['lxml>=2.3.4']
},
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
])