29 lines
691 B
Python
29 lines
691 B
Python
from setuptools import setup, find_packages
|
|
|
|
|
|
def gen_from_file():
|
|
return [
|
|
'click==7.1.1',
|
|
'Flask==1.1.1',
|
|
'Flask-SQLAlchemy==2.4.1',
|
|
'itsdangerous==1.1.0',
|
|
'Jinja2==2.11.1',
|
|
'MarkupSafe==1.1.1',
|
|
'SQLAlchemy==1.3.15',
|
|
'Werkzeug==1.0.0',
|
|
]
|
|
# with open("requirements.txt") as f:
|
|
# return [line.strip() for line in f.readlines()]
|
|
|
|
|
|
setup(name='oshipka',
|
|
version='0.3',
|
|
description='oshipka',
|
|
url='http://gitlab.com/pisquared/oshipka',
|
|
author='Daniel Tsvetkov',
|
|
install_requires=gen_from_file(),
|
|
author_email='',
|
|
license='MIT',
|
|
packages=find_packages(),
|
|
)
|