-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·24 lines (23 loc) · 1.08 KB
/
setup.py
File metadata and controls
executable file
·24 lines (23 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
setup(name='findagg',
version='0.6.2',
description='CMIP5 aggregation discovery upon local TDS IPSL-ESGF datanode or CICLAD filesystem.',
author='Levavasseur Guillaume',
author_email='glipsl@ipsl.jussieu.fr',
url='http://prodiguer.github.io/find-agg/',
packages=find_packages(),
include_package_data=True,
plateforms=['Unix'],
install_requires=['requests>=2.7.0',
'jsonschema>=2.5.1'],
entry_points={'console_scripts': ['find_agg=findagg.findagg:main']},
classifiers=['Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Intended Audience :: System Administrators',
'Natural Language :: English',
'Operating System :: Unix',
'Programming Language :: Python :: 2.5',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Build Tools']
)