-
Notifications
You must be signed in to change notification settings - Fork 49
/
setup.py
28 lines (26 loc) · 1.1 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
from setuptools import setup
#with open('requirements.txt', 'r') as fh:
# dependencies = [l.strip() for l in fh]
setup(
name='cImage',
description='Image manipulation library for media computation education',
version='2.0.1',
py_modules = ['image'],
author = 'Brad Miller and Dan Schellenberg',
author_email = '[email protected]',
install_requires= ['Pillow>=2.9.0'],
include_package_data = False,
license='GPL',
url = 'https://github.com/schellenberg/cImage',
keywords = ['image', 'education'], # arbitrary keywords
classifiers=('Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Education',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: MacOS',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Topic :: Education'),
long_description=open('README.rst').read(),
)