forked from boothby/repiet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (19 loc) · 647 Bytes
/
setup.py
File metadata and controls
22 lines (19 loc) · 647 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from __future__ import absolute_import
import sys
import os
from setuptools import setup
import repiet
# change directories so this works when called from other locations. Useful in build systems.
setup_folder_loc = os.path.dirname(os.path.abspath(__file__))
os.chdir(setup_folder_loc)
setup(
name=repiet.__pkgname__,
version=repiet.__version__,
author=repiet.__authorname__,
author_email=repiet.__authoremail__,
description=repiet.__description__,
url=repiet.__url__,
packages=['repiet', 'repiet._backends'],
entry_points={"console_scripts": ["repiet=repiet.__main__:main"]},
install_requires=['Pillow'],
)