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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
#!/usr/bin/env python3
#
# Copyright (c) 2016-2017 Weitian LI <weitian@aaronly.me>
# MIT license
#
# References:
# [1] Python Packaging User Guide
# https://packaging.python.org/
# [2] pytest - Good Integration Practices
# http://doc.pytest.org/en/latest/goodpractices.html
# [3] setuptools: Building and Distributing Packages with Setuptools
# https://setuptools.readthedocs.io/en/latest/setuptools.html
#
import os
import sys
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
import fg21sim as pkg
class PyTest(TestCommand):
user_options = [("pytest-args=", "a", "Arguments to pass to pytest")]
def initialize_options(self):
TestCommand.initialize_options(self)
self.pytest_args = []
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
# import here, cause outside the eggs aren't loaded
import pytest
errno = pytest.main(self.pytest_args)
sys.exit(errno)
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
# Check the minimal Python version
if sys.version_info < (3, 4):
sys.exit("%s requires Python >= 3.4 ..." % pkg.__pkgname__)
setup(
name=pkg.__pkgname__,
version=pkg.__version__,
description=pkg.__description__,
long_description=read("README.rst"),
author=pkg.__author__,
author_email=pkg.__author_email__,
url=pkg.__url__,
license=pkg.__license__,
# Trove classifiers
# See: https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: BSD",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering :: Astronomy",
],
packages=find_packages(exclude=["docs", "tests"]),
include_package_data=True,
# Do NOT installed as a zipped egg, since Tornado requires direct access
# to the templates and static files.
zip_safe=False,
scripts=[os.path.join("bin", script) for script in os.listdir("bin/")],
install_requires=[
"numpy",
"numba",
"scipy",
"pandas",
"astropy",
"healpy",
"configobj",
"beautifulsoup4",
"requests",
"tornado",
"reproject",
"hmf",
],
dependency_links=[
"git+https://github.com/astropy/regions.git",
],
tests_require=["pytest"],
cmdclass={"test": PyTest},
)
|