-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·33 lines (28 loc) · 839 Bytes
/
setup.py
File metadata and controls
executable file
·33 lines (28 loc) · 839 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
28
29
30
31
32
33
#!./venv/bin/python3
import os
from version import __version__
from setuptools import setup
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('requirements.txt') as f:
dependencies = f.read().splitlines()
version = '.'.join(str(x) for x in __version__)
setup(
name='Eliza',
version=version,
description='Library with common features for Python (Flask) Microservices',
url='https://github.com/redvox/Eliza',
download_url = 'https://github.com/redvox/Eliza/tarball/'+version,
author='Jens Schaa',
author_email="jens.schaa@posteo.de",
packages=[
'eliza',
],
package_data={},
license='Apache Software License',
install_requires=dependencies,
test_suite='test.test_data',
long_description=open('README.md').read()
)