-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
28 lines (27 loc) · 805 Bytes
/
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
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
setup(name='selenese',
version='0.0.1',
description="Python Selenese translator",
long_description=open('README').read(),
# Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Intended Audience :: Developers',
],
keywords='',
author='J-P Stacey',
author_email='',
url='',
license='',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=[],
include_package_data=True,
zip_safe=False,
install_requires=['setuptools',
# -*- Extra requirements: -*-
],
entry_points="""
# -*- entry_points -*-
""",
)