-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (28 loc) · 909 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
import sys
from setuptools import setup
if sys.version_info < (3, 0):
sys.exit('Sorry, Python < 3.0 is not supported')
with open("README.md", "r") as f:
long_description = f.read()
setup(name='mridata',
version='0.2.2',
description='Python command line interface for downloading and uploading to mridata.org.',
long_description=long_description,
long_description_content_type="text/markdown",
url='http://github.com/mikgroup/mridata-python',
author='Frank Ong',
author_email='[email protected]',
license='BSD',
scripts=['bin/mridata'],
install_requires=[
'requests',
'boto3',
'tqdm'
],
packages=['mridata'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
)