generated from GiorgioMB/stockdatamanipulation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (33 loc) · 1.09 KB
/
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
34
35
import os
from setuptools import setup, find_packages
from setuptools.command.install import install
class PostInstallCommand(install):
"""Post-installation for installation mode."""
def run(self):
install.run(self)
# Running pip install for nx-cugraph with the specified extra index URL
os.system("pip install nx-cugraph-cu11 --extra-index-url https://pypi.nvidia.com")
setup(
name='automotifs',
version='1.6',
packages=find_packages(),
description='A wrapper for automatic Motif Detection',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Giorgio Micaletto',
author_email='[email protected]',
url='https://github.com/GiorgioMB/auto_dotmotif/',
install_requires=[
'pandas>=1.1.5',
'pylint>=2.6.0',
'numpy>=1.23',
'dotmotif>=0.14.0',
'networkx>=3.2.1',
'matplotlib>=3.8.0',
'seaborn>=0.12.2'
],
python_requires='>=3.6',
cmdclass={
'install': PostInstallCommand,
}
)