forked from ESGF/esgf-config-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·26 lines (23 loc) · 1022 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from ESGConfigParser.constants import VERSION
setup(name='ESGConfigParser',
version=VERSION,
description='ESGF configuration ESGConfigParser for INI files',
author='Levavasseur Guillaume',
author_email='[email protected]',
url='https://github.com/ESGF/config/tree/master/publisher-configs/ESGConfigParser',
packages=find_packages(),
platforms=['Unix'],
zip_safe=False,
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',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Build Tools']
)