mirror of
https://github.com/Unidata/python-awips.git
synced 2025-02-23 22:57:56 -05:00
10 lines
278 B
Python
10 lines
278 B
Python
from distutils.core import setup
|
|
from setuptools import find_packages
|
|
|
|
setup(
|
|
name='ufpy',
|
|
version='',
|
|
#packages=['ufpy','ufpy.dataaccess',],
|
|
packages=find_packages(exclude='data'),
|
|
license='Creative Commons Attribution-Noncommercial-Share Alike license',
|
|
)
|