-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (28 loc) · 847 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
28
29
30
import io
import re
from glob import glob
from os.path import basename
from os.path import dirname
from os.path import join
from os.path import splitext
from setuptools import setup, find_packages
setup(
name="fbfscan",
version="0.2.0",
packages=find_packages('src'),
package_dir={'': 'src'},
py_modules=[splitext(basename(path))[0] for path in glob('src/*.py')],
include_package_data=True,
zip_safe=False,
scripts=[],
install_requires=['wipistepper','gphoto2','curses-menu>=0.6.7','curtsies'],
package_data={'': ['*.txt', '*.rst','config.ini'],
},
# metadata to display on PyPI
author="Chris Ringeval",
author_email="[email protected]",
description="Fbfscan film scanner",
license="GPLv3",
keywords="scanner film stepper",
url="https://github.com/eatdust/fbfscan/",
)