-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
31 lines (30 loc) · 1.11 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
import os, sys
try:
from setuptools import setup
except ImportError:
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup
setup(
name='HARPy',
description='HARPy: a simple library for interrogating an HTTP Archive (HAR) file',
version='0.2.0',
url='https://github.com/adamgoucher/HARPy',
license='LICENSE.txt',
platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],
author='Adam Goucher',
author_email='adam@element34.ca',
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Topic :: Software Development :: Testing',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
'Programming Language :: Python'],
packages=['harpy'],
py_modules=['harpy'],
zip_safe=False,
)