-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
53 lines (46 loc) · 1.37 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import os
from setuptools import setup, find_packages
from string import Template
def read(fname):
"""Read a file in the top level directory and return its content.
"""
return open(os.path.join(os.path.dirname(__file__), fname)).read()
template = Template("$script = papergit.bin.$script:main")
scripts = set(template.substitute(script=script)
for script in ('paper_git'))
setup(
name="papergit",
version="0.1.4",
author="Abhilash Raj",
author_email="raj.abhilash1@gmail.com",
description="Sync between Dropbox Paper and any git repo.",
license="MIT",
keywords="dorpbox-paper git blog",
url="https://github.com/maxking/paper-to-git",
packages=find_packages(),
include_package_data=True,
long_description=read('README.md'),
entry_points={
'console_scripts': [
"paper-git = papergit.bin.paper_git:main",
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
install_requires=[
'ipython',
'dropbox',
'flufl.lock',
'flask',
'markdown',
'lazr.config',
'peewee',
'GitPython'
]
)