-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 769 Bytes
/
Copy pathsetup.py
File metadata and controls
29 lines (26 loc) · 769 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
import os
from setuptools import setup
DIR = os.path.dirname(__name__)
with open(f"{DIR}README.md", "r") as f:
description = f.read()
setup(
name="xnr-cryptowrapper",
version="0.1.0",
install_requires=[
"requests>=2.21.0",
"requests-async>=0.2.0",
"requests-cache>=0.4.13",
],
description="Wrapper around Cryptocurrency related APIs",
py_modules=["cryptowrapper"],
package_dir={"": "src"},
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
long_description=description,
long_description_content_type="text/markdown",
url="https://github.com/xnr-k/cryptowrapper",
author="xnr-k",
author_email="xnr.k@protonmail.com"
)