-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·33 lines (30 loc) · 1.12 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·33 lines (30 loc) · 1.12 KB
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
26
27
28
29
30
31
32
from setuptools import setup
# read the contents of README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
readme = f.read()
setup(
name='psb2',
version='1.1.2',
description='Utilities for sampling the datasets of PSB2.',
author='Thomas Helmuth and contributors',
author_email='thelmuth@hamilton.edu',
url='https://github.com/thelmuth/psb2-python',
project_urls={
"More information": "https://cs.hamilton.edu/~thelmuth/PSB2/PSB2.html",
"Dataset archive": "https://zenodo.org/record/4678739",
},
long_description = readme,
long_description_content_type = "text/markdown",
license='Eclipse Public License 2.0 (EPL-2.0)',
packages=["psb2"],
install_requires=["requests"],
classifiers=[
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Eclipse Public License 2.0 (EPL-2.0)'
],
)