Skip to content

Commit

Permalink
move to setup.cfg
Browse files Browse the repository at this point in the history
  • Loading branch information
sandre35 committed Jan 10, 2024
1 parent bac439e commit b264378
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 39 deletions.
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
35 changes: 34 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,40 @@
exclude = venv

[metadata]
description-file = README.rst
name = metaset
version = 1.4.2.dev0
author = Polyconseil
author_email = [email protected]
description = A container for dicts of sets - alternative to dictset
long_description = file: README.rst
license = BSD
keywords = metaset, dictset, set, container
url = https://github.com/Polyconseil/metaset
download_url = https://pypi.python.org/pypi/metaset/
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Natural Language :: English
Programming Language :: Python
License :: OSI Approved :: BSD License
Topic :: Software Development :: Libraries :: Python Modules
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12

[options]
include_package_data = True
packages = find:
python_requires = >=3.8

[options.packages.find]
exclude =
tests*

[zest.releaser]
create-wheel = yes
40 changes: 2 additions & 38 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,40 +1,4 @@
# Copyright (c) Polyconseil SAS. All rights reserved.
from setuptools import find_packages, setup
from setuptools import setup


def read(filename):
with open(filename) as fp:
return fp.read()


setup(
name="metaset",
version="1.4.2.dev0",
author="Polyconseil",
author_email="[email protected]",
description="A container for dicts of sets - alternative to dictset",
license="BSD",
keywords=["metaset", "dictset", "set", "container"],
url="https://github.com/Polyconseil/metaset",
download_url="http://pypi.python.org/pypi/metaset/",
packages=find_packages(exclude=["tests*"]),
long_description=read("README.rst"),
install_requires=[],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python",
"License :: OSI Approved :: BSD License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
include_package_data=True,
)
setup()

0 comments on commit b264378

Please sign in to comment.