From dedb84a72fee13be93586be10f54f0a8b92d2e49 Mon Sep 17 00:00:00 2001 From: Angus Hollands Date: Tue, 6 Sep 2022 11:01:29 +0100 Subject: [PATCH] chore: remove `dev/build-awkward.sh` --- dev/build-awkward1.sh | 72 ------------------------------------------- 1 file changed, 72 deletions(-) delete mode 100755 dev/build-awkward1.sh diff --git a/dev/build-awkward1.sh b/dev/build-awkward1.sh deleted file mode 100755 index d445a67c5c..0000000000 --- a/dev/build-awkward1.sh +++ /dev/null @@ -1,72 +0,0 @@ -#!/usr/bin/env bash -# BSD 3-Clause License; see https://github.com/scikit-hep/awkward-1.0/blob/main/LICENSE - -set -e - -rm -rf build dist -mkdir build -mkdir build/awkward1 - -cat > build/awkward1/__init__.py << EOF -# BSD 3-Clause License; see https://github.com/scikit-hep/awkward-1.0/blob/main/LICENSE - -from __future__ import absolute_import - -from awkward import * -EOF - -cat > build/awkward1-setup.py << EOF - -import setuptools -from setuptools import setup - -setup(name = "awkward1", - packages = ["awkward1"], - package_dir = {"": "build"}, - version = open("VERSION_INFO").read().strip(), - author = "Jim Pivarski", - author_email = "pivarski@princeton.edu", - maintainer = "Jim Pivarski", - maintainer_email = "pivarski@princeton.edu", - description = "Manipulate JSON-like data with NumPy-like idioms.", - long_description = open("README-pypi.md").read(), - long_description_content_type = "text/markdown", - url = "https://github.com/scikit-hep/awkward-1.0", - download_url = "https://github.com/scikit-hep/awkward-1.0/releases", - license = "BSD 3-clause", - python_requires = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", - install_requires = ["awkward>=1.0.0"], - classifiers = [ -# "Development Status :: 1 - Planning", -# "Development Status :: 2 - Pre-Alpha", -# "Development Status :: 3 - Alpha", -# "Development Status :: 4 - Beta", - "Development Status :: 5 - Production/Stable", -# "Development Status :: 6 - Mature", -# "Development Status :: 7 - Inactive", - "Intended Audience :: Developers", - "Intended Audience :: Information Technology", - "Intended Audience :: Science/Research", - "License :: OSI Approved :: BSD License", - "Operating System :: POSIX :: Linux", - "Programming Language :: Python", - "Programming Language :: Python :: 2.7", - "Programming Language :: Python :: 3.5", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", - "Topic :: Scientific/Engineering", - "Topic :: Scientific/Engineering :: Information Analysis", - "Topic :: Scientific/Engineering :: Mathematics", - "Topic :: Scientific/Engineering :: Physics", - "Topic :: Software Development", - "Topic :: Utilities", - ]) - -EOF - -python build/awkward1-setup.py bdist_wheel sdist - -if [ "$1" == "--install" ]; then - pip install dist/awkward1-*.whl -fi