-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
49 lines (45 loc) · 1.45 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
44
45
46
47
48
49
#!/usr/bin/env python
from setuptools import setup, find_packages
import os
with open('README.md') as f:
long_description = f.read()
requires = [
'awscli>=1.18.36',
'jmespath>=0.9.5',
'boto3>=1.12.36',
'click>=7.1.1',
'redis>=3.4.1'
]
setup(
name='lamed',
version=open(os.path.join('lamed', 'VERSION')).read().strip(),
description='Run your own A/B testing backend on AWS Lambda',
long_description=long_description,
long_description_content_type='text/markdown',
author='Yoav Aner',
author_email='[email protected]',
url='https://github.com/Alephbet/lamed',
packages=find_packages(exclude=['tests*']),
include_package_data=True,
zip_safe=False,
entry_points="""
[console_scripts]
lamed=lamed.cli:cli
""",
install_requires=requires,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
],
)