-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
30 lines (28 loc) · 859 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
from setuptools import find_packages, setup
VERSION = '0.2.1'
setup(
name='simiotics-s3',
version=VERSION,
packages=find_packages(),
install_requires=[
'boto3',
'simiotics',
],
description='Simiotics S3 integration',
author='Neeraj Kashyap',
author_email='neeraj@simiotics.com',
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Development Status :: 2 - Pre-Alpha',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Version Control',
],
url='https://github.com/simiotics/simiotics-s3',
entry_points={
'console_scripts': [
'simiotics_s3 = simiotics_s3.cli:main'
]
}
)