-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
25 lines (23 loc) · 876 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from setuptools import find_packages, setup
with open("./README.md") as f:
long_description = f.read()
setup(
name="retroactive-pq",
description=("Retroactive priority queues and useful data structures for"
+ " retroactivity"),
author="Parker J. Rule",
author_email="[email protected]",
maintainer="Parker J. Rule",
maintainer_email="[email protected]",
long_description=long_description,
long_description_content_type="text/x-markdown",
url="https://github.com/6851-2021/retroactive-pq",
packages=['retroactive_pq'],
version='0.1',
classifiers=[
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
])