forked from datopian/giftless
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 712 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 712 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
from setuptools import find_packages, setup
setup(
name='giftless',
packages=find_packages(exclude='./tests'),
version=open('VERSION').read(),
description='A Git LFS Server implementation in Python with support for pluggable backends',
author='Shahar Evron',
author_email='shahar.evron@datopian.com',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
install_requires=[
'figcan',
'flask',
'flask-marshmallow',
'marshmallow-enum',
'pyyaml',
'PyJWT',
'webargs',
'python-dotenv',
'typing-extensions',
'flask-classful',
],
include_package_data=True
)