-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (33 loc) · 1.54 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
#!/usr/bin/env python
"""Distutils based setup script for LaFabrique.
For the easiest installation just type the command (you'll probably need
root privileges for that):
python setup.py install
This will install the library in the default location. For instructions on
how to customize the install procedure read the output of:
python setup.py --help install
In addition, there are some other commands:
python setup.py clean -> will clean all trash (*.pyc and stuff)
python setup.py test -> will run the complete test suite
python setup.py bench -> will run the complete benchmark suite
python setup.py audit -> will run pyflakes checker on source code
To get a full list of avaiable commands, read the output of:
python setup.py --help-commands
"""
from setuptools import setup
if __name__ == "__main__":
setup(name='LaFabrique',
version='0.1.11',
author='Julien Peloton',
author_email='j.peloton@sussex.ac.uk',
url='https://github.com/JulienPeloton/LaFabrique',
download_url='https://github.com/JulienPeloton/LaFabrique/archive/0.1.11.zip',
install_requires=['healpy', 'h5py', 'ephem', 'weave'],
packages=['LaFabrique'],
description='Generate simulated datasets for CMB experiments',
license='GPL-3.0',
long_description='See https://github.com/JulienPeloton/LaFabrique',
keywords=['CMB', 'simulations', 'experiments'],
classifiers=[
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7'],)