-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
30 lines (27 loc) · 873 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
with open('requirements.txt', encoding='utf-8') as f:
all_reqs = f.read().split('\n')
install_requires = [x.strip() for x in all_reqs]
setup(
name='archivy_git',
version='0.1.4',
author="Uzay-G",
author_email="[email protected]",
description=(
"Archivy extension to integrate your knowledge base as a syncable git repository with version control."
),
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License"
],
packages=find_packages(),
install_requires=install_requires,
entry_points='''
[archivy.plugins]
git=archivy_git:git
'''
)