-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·29 lines (26 loc) · 821 Bytes
/
setup.py
File metadata and controls
executable file
·29 lines (26 loc) · 821 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
"""Installation script for the 'humarcscripts' python package."""
import os
import toml
# Installation operation
from setuptools import find_packages, setup
setup(
name="humarcscripts",
version="0.1.0",
packages=["humarcscripts"],
package_dir={"humarcscripts": "scripts"},
author="Sol Choi",
author_email="solchoi@yonsei.ac.kr",
maintainer="Sol Choi",
maintainer_email="solchoi@yonsei.ac.kr",
description="Scripts and utilities for humarcscripts",
url="https://github.com/S-CHOI-S/Humarconoid.git",
install_requires=[],
classifiers=[
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.10",
include_package_data=True,
zip_safe=False,
)