-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathOLD_setup.py
More file actions
29 lines (27 loc) · 799 Bytes
/
OLD_setup.py
File metadata and controls
29 lines (27 loc) · 799 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
27
28
29
import setuptools
with open("README.rst", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="pydevtips",
version="0.0.2",
author="Eric Bezzam",
author_email="ebezzam@gmail.com",
description="Functions and scripts to demonstrate Python development tips.",
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/ebezzam/python-dev-tips",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires=">=3.8",
install_requires=[
"numpy",
"scipy",
"matplotlib",
"hydra-core",
"tqdm",
],
include_package_data=True,
)