-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·43 lines (35 loc) · 1.28 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/env python
from setuptools import setup
__pkg_name__ = 'lambdax'
__author__ = "Hugues Lerebours"
VERSION = '0.2.0'
DESCRIPTION = "Write lambda expressions in a simpler way"
with open('README.rst') as f:
LONG_DESCRIPTION = f.read()
CLASSIFIERS = [
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development :: Libraries :: Python Modules'
]
if __name__ == '__main__':
setup(
name=__pkg_name__,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
classifiers=CLASSIFIERS,
author=__author__,
author_email="[email protected]",
url="https://github.com/hlerebours/lambda-calculus",
license="MIT License",
packages=['lambdax', 'lambdax.test'],
setup_requires=['pytest-runner>=2.11', 'pylama_pylint>=3.0', 'pylint==1.7.0'],
tests_require=['pytest>=3.0', 'pytest-cov>=2.4', 'pylama>=7.3'],
platforms=['any']
)