forked from ualberta-smr/PyMigBench
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 641 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 641 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
setup(
name='pymigbench',
description='APIs to access the PyMigBench dataset',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
version="2.2.4",
packages=['pymigbench'],
author='PyMigBench Team',
author_email='mohayemin@ualberta.ca',
url='https://github.com/ualberta-smr/pymigbench',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
python_requires='>=3.11',
install_requires=[
'pyyaml~=6.0',
],
)