-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 774 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
setup(name='dynflags',
packages=find_packages(),
install_requires=['boto3', 'six'],
tests_require=['py>=1.5.0'],
version='0.0.1',
description=
'Scalable serverless feature flag implementation using DynamoDB',
author='Ber Zoidberg',
author_email='ber.zoidberg@gmail.com',
url='https://github.com/zoidbb/dynflags',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Operating System :: OS Independent',
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Topic :: System :: Distributed Computing',
])