-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 739 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 739 Bytes
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
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='foaas',
version='0.2.0',
description='Fuck Off As A Service',
license='MIT',
url='https://github.com/dmpayton/foaas-python',
author='Derek Payton',
author_email='derek.payton@gmail.com',
py_modules=['foaas'],
install_requires=['requests'],
classifiers=(
# 'Development Status :: 6.5 - Immature'
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python',
'Topic :: Software Development :: Testing',
),
)