-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (22 loc) · 693 Bytes
/
setup.py
File metadata and controls
26 lines (22 loc) · 693 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
from setuptools import setup, find_packages
def read(filename):
return [
req.strip()
for req
in open(filename).readlines()
]
setup(
name='api_interview',
version='1.0',
packages=find_packages(),
url='https://github.com/lfdivino/888-spectate-interview-project',
author='Luiz Felipe do Divino',
author_email='lf.divino@gmail.com',
description='API to consume external data to save new events '
'and support consults for the matches details',
classifiers=[
'Programming Language :: Python :: 3.5',
'License :: OSI Approved :: MIT License',
],
install_requires=read("requirements.txt"),
)