forked from MethodFi/method-python
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
19 lines (18 loc) · 577 Bytes
/
Copy pathsetup.py
File metadata and controls
19 lines (18 loc) · 577 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
fromsetuptoolsimportsetup, find_packages
setup(
name='method-python',
version='0.0.44',
description='Python library for the Method API',
long_description='Python library for the Method API',
long_description_content_type='text/x-rst',
author='Marco del Carmen',
author_email='marco@mdelcarmen.me',
url='https://github.com/MethodFi/method-python',
license='MIT',
packages=find_packages(exclude='tests'),
package_data={'README': ['README.md']},
python_requires=">=3.6",
install_requires=[
'hammock==0.2.4'
],
)