-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
39 lines (34 loc) · 1.08 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
38
39
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.31.0",
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",
package_data={'stere': ['py.typed']},
zip_safe=False,
packages=find_packages(),
install_requires=[
'py-moneyed==1.0',
],
extras_require={
'splinter': ['splinter==0.18.0'],
},
classifiers=(
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
),
)