-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (31 loc) · 979 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
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_espial',
version='0.1.1',
author="Uzay-G",
author_email="halcyon@disroot.org",
description=(
"Add automated organization and discovery to your Archivy knowledge base."
),
# 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]
espial=archivy_espial:espial
''',
package_dir={"archivy_espial": "archivy_espial"},
package_data={
'archivy_espial': ['espial.js']
}
)