-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (33 loc) · 872 Bytes
/
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
import os
from setuptools import setup
# variables used in buildout
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.md')).read()
requires = [
'pytest-runner',
'boto3',
]
tests_require = [
'pytest',
'pytest-mock',
'pytest-cov',
]
setup(
name='life_tracker',
version=open("sample/_version.py").readlines()[-1].split()[-1].strip("\"'"),
description='alexa interface to track habbits and todos with fun integrations',
long_description=README,
packages=['life_tracker'],
include_package_data=True,
zip_safe=False,
author='jeremy johnson',
author_email='johnsonjp@gmaicom',
url='https://j1z0.org',
license='MIT',
install_requires=requires,
setup_requires=requires,
tests_require=tests_require,
extras_require={
'test': tests_require,
},
)