forked from Carlotaortizml/WELL-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 625 Bytes
/
setup.py
File metadata and controls
20 lines (18 loc) · 625 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import find_packages
from setuptools import setup
with open("requirements.txt") as f:
content = f.readlines()
requirements = [x.strip() for x in content if "git+" not in x]
setup(name='well',
version="0.0.3",
description="WELL ChatBot",
license="MIT",
#author="Le Wagon",
#author_email="contact@lewagon.org",
#url="https://github.com/lewagon/taxi-fare",
install_requires=requirements,
packages=find_packages(),
test_suite="tests",
# include_package_data: to install data from MANIFEST.in
include_package_data=True,
zip_safe=False)