forked from MatthieuBizien/roam-to-git
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (33 loc) · 1.12 KB
/
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 distutils.core import setup
setup(
name='roam_to_git',
packages=['roam_to_git'],
version='0.1',
license='MIT',
description='Automatic RoamResearch backup to Git',
author='Matthieu Bizien', # Type in your name
author_email='[email protected]', # Type in your E-Mail
url='https://github.com/MatthieuBizien/roam-to-git',
download_url='https://github.com/MatthieuBizien/roam-to-git/archive/v0.1.tar.gz',
keywords=['ROAMRESEARCH', 'GIT', 'BACKUP'],
install_requires=[
'gitpython',
'loguru',
'pyppeteer',
'python-dotenv',
'psutil'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Wiki',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
entry_points={
'console_scripts': ['roam-to-git=roam_to_git.__main__:main'],
}
)