-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 696 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 696 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
req=['nose','numpy']
# %%
from setuptools import setup,find_packages
if __name__ == '__main__':
setup(name='timeutil',
packages=find_packages(),
version='2.1.0',
description='Utilitities to deal with time-series lists',
author='Ronald Ilma',
classifiers=[
'Intended Audience :: Science/Research',
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering :: Atmospheric Science',
'Programming Language :: Python :: 3',
],
python_requires='>=2.7',
install_requires=req,
)