forked from MatthieuBizien/roam-to-git
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 1.16 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
from distutils.core import setup
from pkg_resources import parse_requirements
setup(
name='roam_to_git',
packages=['roam_to_git'],
version='0.2',
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=[str(requirement) for requirement in
parse_requirements(open("requirements.txt"))],
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'],
}
)