forked from josephhardinee/PyDSD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (23 loc) · 768 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
from setuptools import setup
setup(
name='PyDisdrometer',
version='0.1.13.0',
author='Joseph C. Hardin, Nick Guy',
author_email='[email protected]',
packages=['pydisdrometer',
'pydisdrometer.aux_readers',
'pydisdrometer.plot',
'pydisdrometer.io',
'pydisdrometer.partition',
'pydisdrometer.plot',
'pydisdrometer.utility'],
url='http://pypi.python.org/pypi/PyDisdrometer/',
license='LICENSE.txt',
description='Python Disdrometer Processing',
long_description=open('description.txt').read(),
install_requires=['pytmatrix>=0.2.0'],
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console"
],
)