forked from 4dn-dcic/python-lambda
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py.DISABLED
More file actions
executable file
·39 lines (35 loc) · 1.25 KB
/
setup.py.DISABLED
File metadata and controls
executable file
·39 lines (35 loc) · 1.25 KB
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
# -*- coding: utf-8 -*-
import sys
from setuptools import setup, find_packages
pkg_version = open("aws_lambda/_version.py").readlines()[-1].split()[-1].strip("\"'")
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('requirements.txt') as f:
install_requirements = f.read().splitlines()
with open('dev-requirements.txt') as f:
test_requirements = f.read().splitlines()
setup(
name='python-lambda-4dn',
version=pkg_version,
description="FORKED for 4dn-dcic. Use to package and deploy lambda functions.",
long_description=readme,
long_description_content_type='text/x-rst',
author="4DN Team at Harvard Medical School",
author_email='william_ronchetti@hms.harvard.edu',
url='https://github.com/4dn-dcic/python-lambda',
packages=find_packages(),
include_package_data=True,
install_requires=install_requirements,
license="ISCL",
zip_safe=False,
keywords='python-lambda',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
],
test_suite='tests',
tests_require=test_requirements
)