Skip to content

Commit

Permalink
Redo the setup.py for PyPI.
Browse files Browse the repository at this point in the history
  • Loading branch information
pwcazenave committed May 9, 2016
1 parent fcc0433 commit 16351c7
Showing 1 changed file with 12 additions and 28 deletions.
40 changes: 12 additions & 28 deletions setup.py
@@ -1,33 +1,17 @@
import os
from setuptools import setup

def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()

classifiers = """\
Development Status :: alpha
Environment :: Console
Intended Audience :: Science/Research
Intended Audience :: Developers
License :: GPL
Operating System :: OS Independent
Programming Language :: Python
Topic :: Scientific/Engineering
Topic :: Software Development :: Libraries :: Python Modules
"""
from distutils.core import setup

setup(
name = "PyFVCOM",
version = "1.2",
author = "Pierre Cazenave",
author_email = "pica@pml.ac.uk",
name = 'PyFVCOM',
packages = ['PyFVCOM'],
version = '1.2',
description = ("PyFVCOM is a collection of various tools and utilities which can be used to extract, analyse and plot input and output files from FVCOM."),
license = "MIT",
keywords = "fvcom, unstructured grid, mesh",
platforms = "any",
url = "https://gitlab.ecosystem-modelling.pml.ac.uk/pica/PyFVCOM",
packages=['PyFVCOM'],
long_description=read('README.md'),
classifiers=classifiers
author = 'Pierre Cazenave',
author_email = 'pica@pml.ac.uk',
url = 'https://gitlab.ecosystem-modelling.pml.ac.uk/pica/PyFVCOM',
download_url = 'https://gitlab.ecosystem-modelling.pml.ac.uk/fvcom/PyFVCOM/tarball/1.2',
keywords = ['fvcom', 'unstructured grid', 'mesh'],
license = 'MIT',
platforms = 'any',
classifiers = []
)

0 comments on commit 16351c7

Please sign in to comment.