Modernise build of galaxy-objectstore package

This commit is contained in:
Nicola Soranzo
2022-06-09 22:55:07 +01:00
parent c4aeb69683
commit b8c465939c
5 changed files with 42 additions and 101 deletions
@@ -1,7 +0,0 @@
__version__ = "22.5.0.dev0"
PROJECT_NAME = "galaxy-objectstore"
PROJECT_URL = "https://github.com/galaxyproject/galaxy"
PROJECT_AUTHOR = "Galaxy Project and Community"
PROJECT_DESCRIPTION = "Galaxy Objectstore Framework and Plugins"
PROJECT_EMAIL = "galaxy-committers@lists.galaxyproject.org"
+1
View File
@@ -0,0 +1 @@
../package-pyproject.toml
-2
View File
@@ -1,2 +0,0 @@
galaxy-util
pyyaml
+41
View File
@@ -0,0 +1,41 @@
[metadata]
author = Galaxy Project and Community
author_email = galaxy-committers@lists.galaxyproject.org
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: Academic Free License (AFL)
Natural Language :: English
Operating System :: POSIX
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Software Development
Topic :: Software Development :: Code Generators
Topic :: Software Development :: Testing
description = Galaxy objectstore framework and plugins
keywords =
Galaxy
license = AFL
license_files =
LICENSE
long_description = file: README.rst, HISTORY.rst
long_description_content_type = text/x-rst
name = galaxy-objectstore
url = https://github.com/galaxyproject/galaxy
version = 22.5.0.dev0
[options]
include_package_data = True
install_requires =
galaxy-util
PyYAML
packages = find:
python_requires = >=3.7
[options.packages.find]
exclude =
tests*
-92
View File
@@ -1,92 +0,0 @@
#!/usr/bin/env python
import ast
import os
import re
from typing import (
Dict,
List,
)
from setuptools import (
find_packages,
setup,
)
SOURCE_DIR = "galaxy"
project_short_name = os.path.basename(os.path.dirname(os.path.realpath(__file__)))
with open(f"{SOURCE_DIR}/project_galaxy_{project_short_name}.py") as f:
init_contents = f.read()
def get_var(var_name):
pattern = re.compile(rf"{var_name}\s+=\s+(.*)")
match = pattern.search(init_contents)
assert match
return str(ast.literal_eval(match.group(1)))
version = get_var("__version__")
PROJECT_NAME = get_var("PROJECT_NAME")
PROJECT_URL = get_var("PROJECT_URL")
PROJECT_AUTHOR = get_var("PROJECT_AUTHOR")
PROJECT_EMAIL = get_var("PROJECT_EMAIL")
PROJECT_DESCRIPTION = get_var("PROJECT_DESCRIPTION")
PACKAGES = find_packages(where=".", exclude=["tests*"])
ENTRY_POINTS = """
[console_scripts]
"""
PACKAGE_DATA: Dict[str, List[str]] = {
# Be sure to update MANIFEST.in for source dist.
"galaxy": [],
}
PACKAGE_DIR = {
SOURCE_DIR: SOURCE_DIR,
}
readme = open("README.rst").read()
history = open("HISTORY.rst").read()
if os.path.exists("requirements.txt"):
requirements = open("requirements.txt").read().split("\n")
else:
# In tox, it will cover them anyway.
requirements = []
setup(
name=PROJECT_NAME,
version=version,
description=PROJECT_DESCRIPTION,
long_description=readme + "\n\n" + history,
long_description_content_type="text/x-rst",
author=PROJECT_AUTHOR,
author_email=PROJECT_EMAIL,
url=PROJECT_URL,
packages=PACKAGES,
entry_points=ENTRY_POINTS,
package_data=PACKAGE_DATA,
package_dir=PACKAGE_DIR,
include_package_data=True,
install_requires=requirements,
license="AFL",
zip_safe=False,
keywords="galaxy",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Environment :: Console",
"License :: OSI Approved :: Academic Free License (AFL)",
"Operating System :: POSIX",
"Topic :: Software Development",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Testing",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)