python-awips/setup.py

11 lines
278 B
Python
Raw Normal View History

2015-06-12 11:57:06 -06:00
from distutils.core import setup
2015-06-18 10:45:58 -06:00
from setuptools import find_packages
2015-06-12 11:57:06 -06:00
setup(
name='ufpy',
version='',
2015-06-18 10:45:58 -06:00
#packages=['ufpy','ufpy.dataaccess',],
packages=find_packages(exclude='data'),
2015-06-12 11:57:06 -06:00
license='Creative Commons Attribution-Noncommercial-Share Alike license',
)