-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (31 loc) · 1.12 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import os
from functools import partial
from setuptools import setup
from quicktick import __version__
project_dir = os.path.abspath(os.path.dirname(__file__))
project_file = partial(os.path.join, project_dir)
with open(project_file("README.rst"), "rt") as f:
long_description = f.read()
setup(
name="quicktick",
version=__version__,
description="Simple cryptocurrency ticker",
long_description=long_description,
url="https://github.com/Xophmeister/quicktick",
author="Christopher Harrison",
license="GPLv3",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.6"],
keywords="cryptocurrency ticker",
packages=["quicktick"],
python_requires=">=3.6",
install_requires=[
"Jinja2",
"PyYAML",
"requests"],
entry_points={"console_scripts": ["quicktick=quicktick.main:run"]})