-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (25 loc) · 873 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
from setuptools import setup, find_packages
from setuptools import setup, find_packages
import codecs
import os
try:
import pypandoc
long_description = pypandoc.convert_file('README.md', 'rst')
except(IOError, ImportError):
long_description = open('README.md').read()
setup(
name='poofpy',
version='0.4',
license='MIT',
author="Tarook (Tarek)",
author_email='[email protected]',
url='https://github.com/tarekturbo/poofpy',
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
keywords=["poof","api wrapper","crypto","payments","crypto payments","crypto api","payment gateway","crypto payment gateway","free","payment","gateway","sellix","shoppy","poof.io"],
install_requires=[
'pydantic',
'requests'
],
)