forked from CodeGra-de/CodeGra.fs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (24 loc) · 736 Bytes
/
setup.py
File metadata and controls
28 lines (24 loc) · 736 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
#!/usr/bin/env python3
import sys
from distutils.core import setup
version = '0.3.1'
if sys.version_info < (3, 5):
print('Sorry only python 3.5 and up is supported', file=sys.stderr)
sys.exit(1)
setup(
name='CodeGra.fs',
author='The CodeGra.de team',
author_email='info@codegra.de',
version=version,
description='File-system for CodeGra.de instances',
long_description=open('README.md', 'r', encoding='utf-8').read(),
install_requires=['requests>=2.18.4', 'fusepy>=2.0.4'],
packages=['codegra_fs'],
entry_points={
'console_scripts':
[
'cgfs = codegra_fs.cgfs:main',
'cgapi-consumer = codegra_fs.api_consumer:main'
]
}
)