-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (25 loc) · 769 Bytes
/
setup.py
File metadata and controls
31 lines (25 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
30
31
# -*- coding: utf-8 -*-
"""Setup file for qlp
"""
__author__ = "None"
__version__ = "0.1.0"
from os import path
from setuptools import setup, find_packages
CWD = path.abspath(path.dirname(__file__))
with open(path.join(CWD, "README.md"), encoding="utf-8") as inp:
LONG_DESCRIPTION = inp.read()
with open(path.join(CWD, "requirements.txt"), encoding="utf-8") as inp:
REQUIREMENTS = [el.strip() for el in inp.read().split(",")]
setup(
name="qlp",
version=__version__,
description=None,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url=None,
author=__author__,
author_email=None,
keywords=[],
packages=find_packages(exclude=["docs", "tests"]),
install_requires=REQUIREMENTS,
)