-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 840 Bytes
/
setup.py
File metadata and controls
32 lines (29 loc) · 840 Bytes
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import setuptools
with open('README.md', 'r') as fp:
long_description = fp.read()
pos = long_description.find('# Development')
if pos > -1:
long_description = long_description[:pos]
setuptools.setup(
name='qri',
version='0.1.5',
author='Dustin Long',
author_email='dustmop@qri.io',
description='qri python client',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/qri-io/qri-python',
packages=setuptools.find_packages(),
install_requires=[
'pandas==1.0.0',
'Markdown==3.2.2',
'requests==2.24.0',
],
classifiers=[
'Programming Language :: Python',
'License :: OSI Approved :: MIT License',
],
python_requires='>=3.6'
)