-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
37 lines (31 loc) · 1.23 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
from io import open
from setuptools import setup, find_packages
from metashield_clean_up import __version__
def read_file(filepath):
return open(filepath, 'r', encoding='utf-8').read()
EXCLUDE_FROM_PACKAGES = ['tests']
setup(
name='metashield_clean_up',
version=__version__,
description='Metashield Clean-up Online API SDK',
long_description=read_file('README.rst'),
author='Eleven Paths',
author_email='[email protected]',
url='https://github.com/ElevenPaths/metashield-clean-up-sdk-python',
install_requires=read_file('requirements.txt').splitlines(),
keywords=['sdk', 'api', 'client', 'clean-up', 'metashield'],
license='BSD',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
packages=find_packages(exclude=EXCLUDE_FROM_PACKAGES),
zip_safe=False
)