-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
32 lines (29 loc) · 1.14 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
from os.path import abspath, dirname, join
from setuptools import setup, find_packages
here = abspath(dirname(__file__))
README = '\n'.join([open(join(here, 'README')).read(),
open(join(here, 'CHANGES')).read()])
requires = []
setup(name='stepford',
keywords='python,facebook,integration test,test users',
version='0.1',
description='An implementation of the Facebook test user API',
author='Demian Brecht',
author_email='[email protected]',
url='https://github.com/demianbrecht/stepford',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing',
'Topic :: Utilities',
],
long_description=README,
install_requires=requires,
test_suite='tests.TestStepford',
)