-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 720 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 720 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import setuptools
import disjoint_set
setuptools.setup(
name="disjoint_set",
version=disjoint_set.__version__,
packages=setuptools.find_packages(),
package_data={"disjoint_set": ["py.typed"]},
description="Disjoint set data structure implementation for Python",
url="https://github.com/mrapacz/disjoint_set",
license_files=("LICENSE",),
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
maintainer="Maciej Rapacz",
maintainer_email="python.disjointset@gmail.com",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)