-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 786 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 786 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
requirements = []
with open('requirements.txt', 'r') as fh:
for line in fh:
requirements.append(line.strip())
setuptools.setup(
name="watemplate",
version="0.0.0",
author="we are",
author_email="hi@we-are.be",
description="python package template used by we are",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/we-are-coding/python-package-template",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
install_requires=requirements,
python_requires='>=3.8',
)