-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (18 loc) · 708 Bytes
/
setup.py
File metadata and controls
24 lines (18 loc) · 708 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# This is a wrapper for environments that require a `setup.py`-based installation.
# This is not the primary way of installing ordered-set.
#
# The primary setup is in pyproject.toml. You can install ordered-set as a
# dependency using `poetry` or `pip`.
from setuptools import setup
packages = ['ordered_set']
setup_kwargs = {
'name': 'ordered-set',
'version': '4.1.0',
'description': 'A set that remembers its order, and allows looking up its items by their index in that order.',
'author': 'Elia Robyn Lake',
'author_email': 'gh@arborelia.net',
'url': 'https://github.com/rspeer/ordered-set',
'packages': packages,
'python_requires': '>=3.7',
}
setup(**setup_kwargs)