-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (33 loc) · 1.47 KB
/
setup.py
File metadata and controls
35 lines (33 loc) · 1.47 KB
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
33
34
35
#!/usr/bin/env python3
import os
try:
from setuptools import setup # type: ignore
except ImportError:
from distutils.core import setup
pwd = os.path.abspath(os.path.dirname(__file__))
setup(
name = "python-cryptochart",
version = "0.0.2",
description = "Terminal chart for crypto currencies",
keywords = "crypto currency bitcoin chart ascii terminal",
author = "Andor `iFA` Rajci - Fusions Solutions KFT",
author_email = "ifa@fusionsolutions.io",
url = "https://github.com/FusionSolutions/python-cryptochart",
license = "GPL-3",
packages = ["cryptochart"],
long_description = open(os.path.join(pwd, "README.md")).read(),
long_description_content_type = "text/markdown",
zip_safe = False,
python_requires = ">=3.7.0",
install_requires = ["websocket-client"],
package_data = { "":["py.typed"] },
classifiers = [ # https://pypi.org/pypi?%3Aaction=list_classifiers
"Development Status :: 4 - Beta",
"Topic :: Terminals",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
],
)