31 lines
777 B
Python
31 lines
777 B
Python
|
from setuptools import setup
|
||
|
|
||
|
|
||
|
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.1',
|
||
|
description='oshipka',
|
||
|
url='http://gitlab.com/pisquared/oshipka',
|
||
|
author='Flying Circus',
|
||
|
install_requires=gen_from_file(),
|
||
|
author_email='',
|
||
|
license='MIT',
|
||
|
packages=['oshipka'],
|
||
|
package_dir={'oshipka': 'src/oshipka'},
|
||
|
package_data={'oshipka': ['data/*.db']},
|
||
|
zip_safe=False)
|