-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 880 Bytes
/
setup.py
File metadata and controls
29 lines (26 loc) · 880 Bytes
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
from setuptools import setup
setup(
name = 'auk',
version = '0.1.1',
license = 'MIT',
requires = ['python (>= 3.4)'],
provides = ['auk'],
description = 'Micro-package for compiling s-expressions into Python\'s predicate functions' ,
url = 'http://github.com/IwoHerka/auk',
packages = ['auk', 'tests'],
maintainer = 'Iwo Herka',
maintainer_email = 'hi@iwoherka.eu',
author = 'Iwo Herka',
author_email = 'hi@iwoherka.eu',
include_package_data = True,
package_data = dict(auk = ['*.yml']),
package_dir = dict(auk = 'auk'),
install_requires = [
'sexpr'
],
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python'
],
)