forked from ubccr/coldfront
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
97 lines (94 loc) · 3 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#!/usr/bin/env python
from setuptools import setup, find_packages
import coldfront
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='coldfront',
version=coldfront.VERSION,
description='HPC Resource Allocation System ',
long_description=long_description,
long_description_content_type="text/markdown",
keywords='high-performance-computing resource-allocation',
url='http://coldfront.io',
project_urls={
'Bug Tracker': 'https://github.com/ubccr/coldfront/issues',
'Documentation': 'https://coldfront.readthedocs.io',
'Source Code': 'https://github.com/ubccr/coldfront',
},
author='Andrew E. Bruno, Dori Sajdak, Mohammad Zia',
license='GNU General Public License v3 (GPLv3)',
python_requires='>=3.6',
packages=find_packages(),
install_requires=[
'arrow==1.3.0',
'asgiref==3.7.2',
'bibtexparser==1.4.1',
'blessed==1.20.0',
'certifi==2024.2.2',
'chardet==5.2.0',
'crispy-bootstrap4==2024.1',
'charset-normalizer==3.3.2',
'Django==4.2.11',
'django-crispy-forms==2.1',
'django-environ==0.11.2',
'django-model-utils==4.4.0',
'django-picklefield==3.1',
'django-q==1.3.9',
'django-settings-export==1.2.1',
'django-simple-history==3.5.0',
'django-split-settings==1.3.0',
'django-sslserver==0.22',
'django-su==1.0.0',
'doi2bib==0.4.0',
'factory-boy==3.3.0',
'Faker==24.1.0',
'fontawesome-free==5.15.4',
'future==1.0.0',
'humanize==4.9.0',
'idna==3.6',
'pyparsing==3.1.2',
'python-dateutil==2.9.0.post0',
'python-memcached==1.62',
'pytz==2024.1',
'redis==3.5.3',
'requests==2.31.0',
'six==1.16.0',
'sqlparse==0.4.4',
'text-unidecode==1.3',
'types-python-dateutil==2.8.19.20240106',
'typing_extensions==4.10.0',
'urllib3==2.2.1',
'wcwidth==0.2.13',
'django-datatable==0.3.1',
'django-datatables-view==1.19.1',
'django-tables2==2.3.4',
'djangorestframework==3.15.0',
'djangorestframework-datatables==0.7.0',
'django-mathfilters==1.0.0',
'django-easy-pdf3==0.1.4',
'ipython==7.16.3',
'isilon-sdk',
'logging_tree==1.9',
'mysqlclient==2.2.0',
'pandas==2.2.1',
'reportlab==4.0.5',
'xhtml2pdf==0.2.15',
'XlsxWriter',
'django-extensions==3.2.3',
],
entry_points={
'console_scripts': [
'coldfront = coldfront:manage',
],
},
include_package_data = True,
classifiers=[
'Programming Language :: Python :: 3',
'Framework :: Django :: 3.2',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Topic :: Scientific/Engineering',
'Topic :: System :: Systems Administration',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
]
)