forked from gillescastel/inkscape-figures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 827 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
import pathlib
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
setup(
name="inkscape-figures",
version="1.0.2",
description="Script for managing inkscape figures",
long_description=readme(),
long_description_content_type="text/markdown",
url="https://github.com/gillescastel/inkscape-figures",
author="Gilles Castel",
author_email="[email protected]",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
],
packages=['inkscapefigures'],
scripts=['bin/inkscape-figures'],
install_requires=['inotify', 'pyperclip', 'click', 'appdirs', 'daemonize'],
include_package_data=True
)