forked from ubccr/coldfront
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
65 lines (62 loc) · 1.98 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
#!/usr/bin/env python
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='coldfront',
version='1.0.2',
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)',
packages=find_packages(),
install_requires=[
'arrow==0.13.1',
'bibtexparser==1.1.0',
'blessed==1.15.0',
'chardet==3.0.4',
'Django==2.2.13',
'django-crispy-forms==1.7.2',
'django-model-utils==3.1.2',
'django-picklefield==2.0',
'django-q==1.0.1',
'django-settings-export==1.2.1',
'django-simple-history==2.7.2',
'django-sslserver==0.20',
'django-su==0.8.0',
'doi2bib==0.3.0',
'future==0.17.1',
'humanize==0.5.1',
'idna==2.8',
'pyparsing==2.3.1',
'python-dateutil==2.8.0',
'python-memcached==1.59',
'pytz==2018.9',
'redis==3.2.1',
'requests==2.22.0',
'six==1.12.0',
'urllib3==1.24.2',
'wcwidth==0.1.7',
],
entry_points={
'console_scripts': [
'coldfront = coldfront:manage',
],
},
classifiers=[
'Programming Language :: Python :: 3',
'Framework :: Django :: 2.2',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Topic :: Scientific/Engineering',
'Topic :: System :: Systems Administration',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
]
)