-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 759 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 759 Bytes
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
from setuptools import setup, find_packages
setup(
name="pytester",
version="0.0.2",
url="https://github.com/MichaelDeCortix/pyTester",
author="MichaelDeCortix",
description="Description of my package",
install_requires=[
"ipywidgets >= 7.5.1",
"pyperclip >= 1.8.2",
"IPython >= 7.16.1",
"psycopg2 >= 2.8.6",
"cx_Oracle >= 8.1.0",
"requests >= 2.25.1",
"rich >= 10.1.0",
"curlify >= 2.2.1",
],
packages=find_packages(exclude=['test', '.gitignore']),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
],
)