-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (36 loc) · 1.34 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
44
45
46
47
48
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='credit_score',
version="0.0.12",
description="TaxiFare Model (api_pred)",
license="MIT",
author="Fernando Cirone & Gregory Monrose",
author_email="[email protected]",
#url="https://github.com/monrosegregory/credit_score",
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)
# 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='taxifare',
# version="0.0.12",
# description="TaxiFare Model (api_pred)",
# license="MIT",
# author="Le Wagon",
# author_email="[email protected]",
# #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)