-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (34 loc) · 1.06 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
#!/usr/bin/env python
# -*- coding: utf8 -*-
#
from __future__ import with_statement, print_function
"""
Data Analysis Highly tailored for Upbl09a
"""
__authors__ = ["Jérôme Kieffer"]
__contact__ = "[email protected]"
__license__ = "MIT"
__copyright__ = "European Synchrotron Radiation Facility, Grenoble, France"
__date__ = "20140318"
__status__ = "development"
version = "0.1"
import os, sys
from distutils.core import setup, Extension, Command
import glob
script_files = glob.glob("scripts/*")
setup(name='dahu',
version=version,
author="Jérôme Kieffer (python)",
author_email="[email protected]",
description='Python lightweight plugin pipelines',
url="https://github.com/kif",
download_url="https://github.com/kif",
ext_package="dahu",
scripts=script_files,
# ext_modules=[Extension(**dico) for dico in ext_modules],
packages=["dahu", "dahu.plugins"],
package_dir={"dahu": "dahu-src", "dahu.plugins": "plugins" },
test_suite="test",
# cmdclass=cmdclass,
# data_files=data_files
)