-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
37 lines (32 loc) · 1.02 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
import os
from setuptools import find_packages, setup
def read(filename):
path = os.path.join(os.path.dirname(__file__), filename)
with open(path, 'r') as f:
return f.read()
setup(
name="stere",
version="0.26.1",
description="A nice way of implementing the Page Object pattern.",
long_description=read('README.rst'),
author="Joshua Fehler",
author_email="[email protected]",
license="MIT",
url="https://github.com/jsfehler/stere",
packages=find_packages(),
install_requires=[
'py-moneyed==1.0',
],
extras_require={
'splinter': ['splinter==0.14.0'],
},
classifiers=(
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
),
)