-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
28 lines (26 loc) · 894 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
import os
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='django-usda',
version='0.1.0beta',
description='Import and map the USDA National Nutrient Database for Standard Reference (SR22) to Django models',
long_description=read('README.rst'),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Topic :: Software Development :: Libraries :: Python Modules',
'Framework :: Django',
],
author='David Sauve',
author_email='[email protected]',
url='http://github.com/notanumber/django-usda',
license='http://www.opensource.org/licenses/bsd-license.php',
packages=[
'usda',
'usda.management',
'usda.management.commands',
],
)