forked from radiasoft/sirepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (52 loc) · 1.59 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
# -*- coding: utf-8 -*-
u"""Sirepo setup script
:copyright: Copyright (c) 2015-2018 RadiaSoft LLC. All Rights Reserved.
:license: http://www.apache.org/licenses/LICENSE-2.0.html
"""
import pykern.pksetup
pykern.pksetup.setup(
author='RadiaSoft LLC.',
author_email='[email protected]',
description='accelerator code gui',
install_requires=[
# some "concrete" dependencies in requirements.txt
'Authlib>=0.13',
'Flask>=1.1',
'SQLAlchemy',
'aenum',
'asyncssh',
'cryptography>=2.8',
'futures',
# for virtualenv
'importlib-metadata<2,>=0.12',
'numconv',
'numpy',
'pyIsEmail',
'pykern',
'pytz',
'requests',
'tornado',
'user-agents',
'uwsgi',
'werkzeug',
'yt',
],
license='http://www.apache.org/licenses/LICENSE-2.0.html',
name='sirepo',
url='http://sirepo.com',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: JavaScript',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Software Development :: Libraries :: Application Frameworks',
],
)