-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 766 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 766 Bytes
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='faadata',
version='2.0.0alpha1',
description='Models and load scripts used to import FAA (and FADDS) data into Django',
author='Adam Fast',
author_email='adamfast@gmail.com',
url='https://github.com/adamfast/faadata',
packages=find_packages(),
package_data={
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'
],
)