forked from uktrade/git-lfs-http-mirror
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (29 loc) · 966 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
import setuptools
def long_description():
with open('README.md', 'r') as file:
return file.read()
setuptools.setup(
name='git-lfs-http-mirror',
version='0.0.3',
author='Department for International Trade',
author_email='[email protected]',
description='Simple Python server to serve a read only HTTP mirror of git repositories that use Large File Storage (LFS)',
long_description=long_description(),
long_description_content_type='text/markdown',
url='https://github.com/uktrade/git-lfs-http-mirror',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Version Control :: Git',
],
python_requires='>=3.7.4',
install_requires=[
'click>=8.0.1',
'httpx>=0.23.1',
'hypercorn>=0.14.3',
'quart>=0.18.3',
],
py_modules=[
'git_lfs_http_mirror',
],
)