forked from UdayLab/PAMI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (45 loc) · 1.5 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
36
37
38
39
40
41
42
43
44
45
46
47
import setuptools
with open('README.md', 'r') as fh:
long_description = fh.read()
setuptools.setup(
name='pami',
version='2024.7.2',
author='Rage Uday Kiran',
author_email='[email protected]',
description='This software is being developed at the University of Aizu, Aizu-Wakamatsu, Fukushima, Japan',
long_description=long_description,
long_description_content_type='text/markdown',
packages=setuptools.find_packages(),
url='https://github.com/udayLab/PAMI',
license='GPLv3',
install_requires=[ # All necessary packages utilized by our PAMI software
'psutil',
'pandas',
'plotly',
'matplotlib',
'resource',
'validators',
'urllib3',
'Pillow',
'numpy',
'sphinx',
'sphinx-rtd-theme',
'validators',
'discord.py',
'networkx',
'deprecated',
],
extras_require={
'gpu': ['cupy', 'pycuda'],
'spark': ['pyspark'],
'dev': ['twine', 'setuptools', 'build'],
'all': ['cupy', 'pycuda', 'pyspark', 'twine', 'setuptools', 'build']
},
classifiers=[
'Development Status :: 5 - Production/Stable', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
],
python_requires='>=3.5',
)