-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
34 lines (32 loc) · 911 Bytes
/
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
#!/usr/bin/env python
import QOpenScienceFramework
from setuptools import setup
setup(
name="python-qosf",
version=QOpenScienceFramework.__version__,
description="Qt widgets for the Open Science Framework",
author=QOpenScienceFramework.__author__,
author_email="dschreij@gmail.com",
url="https://github.com/dschreij/QOpenScienceFramework",
classifiers=[
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Environment :: MacOS X',
'Environment :: Win32 (MS Windows)',
'Environment :: X11 Applications',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
install_requires=[
'qtpy',
'arrow',
'humanize',
'python-fileinspector',
'requests-oauthlib>=0.6',
'qtawesome>=0.5.7',
'python-dotenv'
],
include_package_data=True,
packages = ['QOpenScienceFramework'],
)