-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (37 loc) · 1.33 KB
/
setup.py
File metadata and controls
42 lines (37 loc) · 1.33 KB
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
40
41
42
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
install_requires = ["numpy>=1.19.5"]
dev_specific_install_requires = [
"pre-commit==2.12.1",
"pandas>=1.1.5",
"scipy>=1.5.4",
]
dev_install_requires = dev_specific_install_requires + install_requires
setuptools.setup(
name="utils",
version="0.0.4",
author="Fan Grayson",
author_email="fangrayson@hotmail.com",
description=("Random utils functions"),
long_description=long_description,
long_description_content_type="text/markdown",
# download_url="https://github.com/fangrayson/utils/archive/refs/tags/v0.0.1.tar.gz",
url="https://github.com/fangrayson/utils/",
#project_urls={
# "Bug Tracker": "https://github.com/fangrayson/utils/issues",
#},
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",
],
packages=setuptools.find_packages(where="src"),
package_dir={"": "src"},
python_requires=">=3.6.8",
install_requires=install_requires,
extras_require={"dev": dev_install_requires, "ci": dev_install_requires},
)