-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (33 loc) · 987 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
27
28
29
30
31
32
33
34
35
36
from setuptools import setup, find_packages
# PLEASE DO NOT EDIT THIS, MANAGED FOR CI PURPOSES
__QUALIFIER__ = ""
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="qualifier",
version="1.6.1" + __QUALIFIER__,
description="A simple python project used for updating the qualifier part of the version for python projects.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Srikalyan Swayampakula",
author_email="[email protected]",
url="https://github.com/srikalyan/qualifier",
packages=find_packages(exclude=["*.tests"]),
test_suite="qualifier.tests",
setup_requires=[
"pytest-runner",
],
install_requires=[
],
tests_require=[
"mock",
"pyhamcrest",
"pytest",
"pytest-cov",
],
entry_points={
"console_scripts": [
"update_qualifier = qualifier.executor:main"
],
},
)