-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
29 lines (26 loc) · 1.01 KB
/
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
29
#! /usr/bin/env python
# coding: utf-8
from distutils.core import setup
files = ["data/*"]
setup(
name = 'gchem',
version = '0.1.1',
description = 'Read and write files from GEOS-Chem chemistry transport model',
long_description = """
Module for reading and writing input/output files from the GEOS-Chem chemistry
transport model.""",
url = '',
download_url = '',
author = 'Gerrit Kuhlmann',
author_email = 'gerrit.kuhlmann@gmail.com',
platforms = ['any'],
license = 'GNU3',
keywords = ['python', 'GEOS Chem'],
classifiers = ['Development Status :: Beta',
'Intended Audiance :: Science/Research',
'License :: GNU version 3',
'Operating System :: OS Independent'
],
packages = ['gchem'],
package_data = {'gchem': files}
)