-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (31 loc) · 963 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
26
27
28
29
30
31
32
33
from setuptools import setup, find_packages
# Read the contents of README.md
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='thoi',
use_scm_version=True,
setup_requires=['setuptools_scm'],
description='Torch - Higher Order Interactions',
long_description=long_description,
long_description_content_type='text/markdown',
author='Laouen Mayal Louan Belloli, Ruben Herzog',
author_email='[email protected]',
url='https://github.com/Laouen/THOI',
packages=find_packages(),
install_requires=[
'numpy',
'tqdm',
'scipy',
'pandas',
'networkx'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Programming Language :: Python :: 3'
],
python_requires='>=3.6',
)