-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (36 loc) · 1.28 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
43
#!/usr/bin/python
# -*- coding: utf-8 -*-
# __author__ = "Albin TCHOPBA"
# __copyright__ = "Copyright 2020 Albin TCHOPBA and contributors"
# __credits__ = ["Albin TCHOPBA and contributors"]
# __license__ = "GPL"
# __version__ = "3"
# __maintainer__ = "Albin TCHOPBA"
# __email__ = "Albin TCHOPBA <atchopba @ gmail dot com"
# __status__ = "Production"
from io import open
from os import path
from setuptools import setup
path_ = path.abspath(path.dirname(__file__))
long_description = ""
with open(path.join(path_, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="epidemic-notifier",
version="0.0.1",
description="During an epidemic period, manage the people in contact and notify them when the test result is positive!",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/atchopba/epidemic-notifier",
author="atchopba",
author_email="atchopba@gmail.com",
classifiers=[
"Development Status :: 0.0.1",
"Intended Audience :: web API",
"License :: GPL-3.0 License ",
"Programming Language :: Python :: 3.7",
],
keywords="python epidemic notifier notification",
install_requires=["pytest>=5.4.3"],
license="GPL-3.0 License",
)