-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (39 loc) · 1.24 KB
/
setup.py
File metadata and controls
54 lines (39 loc) · 1.24 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env python
PROJECT = 'PyS3Local'
# Change docs/sphinx/conf.py too!
VERSION = '0.1'
from setuptools import setup, find_packages
try:
long_description = open('README.rst', 'rt').read()
except IOError:
long_description = ''
setup(
name=PROJECT,
version=VERSION,
description='Fork of mock-s3, a Python clone of fake-s3, A lightweight server clone of Amazon S3.',
long_description=long_description,
author='3dluvr',
author_email='3dluvr@users.noreply.github.com',
url='https://github.com/3dluvr/PyS3Local',
download_url='https://github.com/3dluvr/PyS3Local/tarball/master',
classifiers=['Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
'Environment :: Console',
],
platforms=['Any'],
scripts=[],
provides=[],
install_requires=[],
namespace_packages=[],
packages=find_packages(),
include_package_data=True,
entry_points={
'console_scripts': [
'PyS3Local = PyS3Local.main:main'
],
},
zip_safe=False,
)