-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathsetup.py
28 lines (27 loc) · 940 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
from setuptools import setup
import versioneer
setup(
name='PyDSD',
author='Joseph C. Hardin, Nick Guy',
author_email='josephhardinee@gmail.com',
packages=['pydsd',
'pydsd.aux_readers',
'pydsd.plot',
'pydsd.io',
'pydsd.partition',
'pydsd.plot',
'pydsd.utility',
'pydsd.fit'],
url='http://pypi.python.org/pypi/PyDSD/',
license='LICENSE.txt',
description='Python Disdrometer Processing',
long_description=""" A python library for working with drop size distributions, disdrometers, and particle probes.""",
install_requires=['pytmatrix>=0.2.0', 'numpy', 'matplotlib', 'scipy', 'versioneer'],
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console"
],
include_package_data=True,
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass()
)