|
| 1 | +from setuptools import setup |
| 2 | + |
| 3 | +#with open('requirements.txt', 'r') as fh: |
| 4 | +# dependencies = [l.strip() for l in fh] |
| 5 | + |
| 6 | +setup( |
| 7 | + name='cImage', |
| 8 | + description='Image manipulation library for media computation education', |
| 9 | + version='1.4.1', |
| 10 | + py_modules = ['cImage'], |
| 11 | + author = 'Brad Miller', |
| 12 | + author_email = '[email protected]', |
| 13 | + install_requires= ['Pillow==2.9.0'], |
| 14 | + include_package_data = False, |
| 15 | + license='GPL', |
| 16 | + url = 'https://github.com/bnmnetp/cImage', |
| 17 | + keywords = ['image', 'education'], # arbitrary keywords |
| 18 | + classifiers=('Development Status :: 5 - Production/Stable', |
| 19 | + 'Environment :: Console', |
| 20 | + 'Intended Audience :: Education', |
| 21 | + 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', |
| 22 | + 'Operating System :: MacOS', |
| 23 | + 'Operating System :: Unix', |
| 24 | + 'Programming Language :: Python', |
| 25 | + 'Programming Language :: Python :: 2.7', |
| 26 | + 'Programming Language :: Python :: 3.4', |
| 27 | + 'Topic :: Education'), |
| 28 | + long_description=open('README.rst').read(), |
| 29 | +) |
0 commit comments