-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 707 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup,find_packages
from setuptools.extension import Extension
import numpy
setup(
name='mixel',
version='0.0.3',
author='Lawrence Pang',
author_email='lawrencepang36@gmail.com',
description='a small python module for recoloring images with pixels from a palette image',
url='https://github.com/lpang36/mixel',
packages=find_packages(),
ext_modules=[Extension('mixel.anneal',['mixel/anneal.c'])],
include_dirs=[numpy.get_include()],
platforms=['any'],
license='MIT',
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 2",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
)