-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (29 loc) · 962 Bytes
/
setup.py
File metadata and controls
34 lines (29 loc) · 962 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
32
33
34
from setuptools import setup, find_packages
import setuptools
VERSION = '0.1.0'
DESCRIPTION = 'Vitalert'
with open("README.md", "r", encoding="utf-8") as fh:
LONG_DESCRIPTION = fh.read()
# Setting up
setup(
# the name must match the folder name 'verysimplemodule'
name="Vitalert",
version=VERSION,
author="Aimé Risson",
author_email="aime.risson.1@gmail.fr",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
install_requires=['requests'],
keywords=['python', 'Vitalert'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Education",
],
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
python_requires=">=3.6",
url = "https://github.com/Vitalert/vitalert-python"
)