-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (40 loc) · 1.18 KB
/
setup.py
File metadata and controls
42 lines (40 loc) · 1.18 KB
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
32
33
34
35
36
37
38
39
40
41
42
from setuptools import setup, find_packages
try:
import pypandoc
long_description = pypandoc.convert("README.md", "rst")
except:
from io import open
long_description = open("README.md").read()
setup(
name = "oclminify",
description = "Minify OpenCL source files.",
long_description = long_description,
license = "BSD",
version = "0.8.0",
author = "StarByte Software, Inc.",
author_email = "jbendig@starbytesoftware.com",
maintainer = "James Bendig",
url = "https://github.com/StarByteSoftware/oclminify",
platforms = "Cross Platform",
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers ",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
],
packages = find_packages(),
install_requires = [
"pycparser>=2.17",
"pycparserext>=2016.2",
],
extras_require = {
"build": ["PyOpenCL>=2016.1",],
},
entry_points = {
"console_scripts": [
"oclminify = oclminify.__main__:main",
],
},
test_suite = "tests.test_minifier",
)