Skip to content

Commit d6d5b67

Browse files
committed
get setup stuff into github
1 parent 66d339f commit d6d5b67

File tree

4 files changed

+37
-0
lines changed

4 files changed

+37
-0
lines changed

cImage.py

+5
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,11 @@
4747
# Changes:
4848
# Added _imroot.lift() to ensure that pictures aren't hidden under other Windows
4949
# (needed on Windows 7 & Python 3.4. Ubuntu 14.04 was fine without it).
50+
#
51+
# version 1.4
52+
# Brad Miller
53+
# distribute on pypi
54+
#
5055

5156
try:
5257
import tkinter

requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Pillow==2.9.0

setup.cfg

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
description-file = README.rst

setup.py

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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

Comments
 (0)