-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (28 loc) · 1012 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
31
from setuptools import setup
desciption = '"Py"thon program for "Poi"sson Image Editing'
long_description = open('README.md').read()
setup(
name='pypoi',
version='0.3.2',
description=desciption,
long_description=long_description,
long_description_content_type='text/markdown',
license='Apache License 2.0',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: MacOS X',
'Environment :: Win32 (MS Windows)',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
author='Fumihiro Bessho (Ben)',
author_email='[email protected]',
url='https://github.com/fbessho/PyPoi',
packages=['pypoi', 'pypoi.testimages'],
package_data={'pypoi': ['testimages/*.png']},
entry_points = {
'console_scripts': ['pypoi=pypoi.gui:main'],
},
install_requires=['Pillow', 'numpy', 'pyamg', 'scipy', 'future']
)