This repository has been archived by the owner on Apr 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (42 loc) · 1.53 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
import os
from setuptools import setup, find_packages
def read(*paths):
"""Build a file path from *paths* and return the contents."""
with open(os.path.join(*paths), 'r') as f:
return f.read()
setup(name='sqmpy',
version='0.4',
description='A simple queue manager to submit and monitor jobs on'
'computing resources.',
long_description=(read('README.rst')),
url='http://github.com/mehdisadeghi/sqmpy',
license='BSD',
author='Mehdi Sadeghi',
author_email='[email protected]',
packages=find_packages(exclude=['tests*']),
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
],
data_files=['config.py',
'run.py'],
install_requires=['Flask',
'Flask-SQLAlchemy',
'Flask-Login',
'Flask-WTF',
'Flask-CSRF',
'Flask-Uploads',
'enum34',
'saga-python',
'py-bcrypt',
'names',
'gevent'],
)