-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
49 lines (45 loc) · 1.44 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#! /usr/bin/env python
##########################################################################
# pySAP - Copyright (C) CEA, 2018
# Distributed under the terms of the CeCILL-B license, as published by
# the CEA-CNRS-INRIA. Refer to the LICENSE file or to
# http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
# for details.
##########################################################################
# System import
from __future__ import print_function
import os
from setuptools import setup, find_packages
# Global parameters
PKGDATA = {
"myextplugin": [
"pysap-extplugin"
]
}
CLASSIFIERS = [
"Development Status :: 1 - Planning",
"Environment :: Console",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering"]
AUTHOR = """
Antoine Grigis <antoine.grigis@cea.fr>
Samuel Farrens <samuel.farrens@gmail.com>
Jean-Luc Starck <jl.stark@cea.fr>
Philippe Ciuciu <philippe.ciuciu@cea.fr>
"""
# Write setup
setup(
name="python-pySAP-extplugin",
description="Python Sparse data Analysis Package external plugin template.",
long_description="Python Sparse data Analysis Package external plugin template.",
license="CeCILL-B",
classifiers="CLASSIFIERS",
author=AUTHOR,
author_email="XXX",
version="0.0.1",
url="https://github.com/CEA-COSMIC/pysap-extplugin",
packages=find_packages(),
platforms="OS Independent",
package_data=PKGDATA
)