-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
36 lines (29 loc) · 923 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
34
35
36
import os
from setuptools import setup, find_packages
from subprocess import call
def get_long_desc():
with open("README.md", "r") as readme:
desc = readme.read()
return desc
def setup_package():
setup(
name='repofs',
version='0.2.6',
description='File system view of git repositories',
long_description=get_long_desc(),
long_description_content_type="text/markdown",
url='https://github.com/AUEB-BALab/RepoFS',
license='Apache Software License',
packages=find_packages(),
#data_files=[('man/man1', ['repofs.1'])],
install_requires=['fusepy', 'pygit2'],
entry_points = {
'console_scripts': [
'repofs=repofs.__main__:main',
],
},
author = 'Vitalis Salis',
author_email = '[email protected]'
)
if __name__ == '__main__':
setup_package()