forked from ska-telescope/lmc-base-classes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (38 loc) · 1.32 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 sys
from setuptools import setup, find_packages
# prevent unnecessary installation of pytest-runner
needs_pytest = {'pytest', 'test', 'ptr'}.intersection(sys.argv)
pytest_runner = ['pytest-runner'] if needs_pytest else []
setup(name="lmc_base_classes",
description="Element Base Classes - Evolutionary Prototype",
author="SKA Team",
packages=find_packages(),
include_package_data=True,
scripts=["scripts/gen_csv_info.py",
"scripts/purge_xmi_tree.py",
"scripts/elt_ctl.py",
],
url='https://www.skatelescope.org/',
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: Other/Proprietary License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Astronomy"],
platforms=["OS Independent"],
setup_requires=[] + pytest_runner,
install_requires=[
"enum34",
"argparse"
],
tests_require=[
"coverage",
"pytest",
"pytest-cov",
"pytest-xdist"
],
keywords="lmc base classes ska",
zip_safe=False)