-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (27 loc) · 962 Bytes
/
setup.py
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
import setuptools
import sexpr
setuptools.setup(
name = 'sexpr',
version = sexpr.__version__,
license = 'MIT',
requires = ['python (>= 3.4)'],
provides = ['sexpr'],
description = 'S-expression toolkit for Python',
url = 'http://github.com/IwoHerka/sexpr',
packages = setuptools.find_packages(exclude=['contrib', 'docs', 'tests*']),
maintainer = 'Iwo Herka',
maintainer_email = '[email protected]',
author = 'Iwo Herka',
author_email = '[email protected]',
install_requires = [
'pyyaml==3.12',
'yamlloader==0.5.2'
],
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)