-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·47 lines (42 loc) · 1.28 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
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python
#coding:utf-8
# Author: smeggingsmegger
# Purpose: setup
# Created: 2016-04-01
#
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except IOError:
return "File '%s' not found.\n" % fname
long_description = read('README.md')
if os.path.exists('README.rst'):
long_description = open('README.rst').read()
setup(
name='PyScanii',
version='1.1.4',
url='http://github.com/smeggingsmegger/PyScanii',
license='MIT',
author='Scott Blevins',
author_email='sblevins@gmail.com',
description='A Python wrapper for Scanii.com',
long_description= long_description+'\n'+read('CHANGES'),
platforms='OS Independent',
packages=['PyScanii'],
include_package_data=True,
install_requires=['requests'],
keywords=['Scan', 'Virus', 'Scanii', 'API'],
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
]
)