-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (37 loc) · 1.59 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
import glob
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
with open("LICENSE.md", "r") as fh:
long_license = fh.read()
bin_files = glob.glob("bin/*")
setuptools.setup(name='DESPipeline',
version='0.1',
descriptions='DES public pipeline',
author='Dark Energy Survey',
url='https://github.com/DarkEnergySurvey/DESPipeline',
long_description=long_description,
long_description_content_type="text/markdown",
license=long_license,
classifiers=['Programming Language :: Pythone :: 2',
'Operating System :: OS Independent'
],
packages=['despyastro',
'despyfitsutils',
'despymisc',
'despyserviceaccess',
'deswebdav',
'filemgmt',
'intgutils',
'processingfw'],
package_dir={'': 'python'},
scripts=bin_files,
install_requires=['numpy==1.9.1',
'scipy==0.14',
'dateutil==1.5',
'requests==2.10.0',
'pycurl==7.43.0.2',
'psutil==4.3.1',
'pytz==2015.7',
'astropy==1.1.2'])