-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 683 Bytes
/
Copy pathsetup.py
File metadata and controls
21 lines (20 loc) · 683 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import setuptools
from pathlib import Path
setuptools.setup(
name="ben-python-utils",
version="1.0",
license='MIT',
author="hjben",
author_email="hj.ben.kim@gmail.com",
description="Some personal utilities using Python",
long_description=Path("README.md").read_text(encoding="utf-8"),
url="https://github.com/hjben/python-utils",
packages=setuptools.find_packages(),
install_requires=Path("requirements.txt").read_text().splitlines(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Natural Language :: English"
],
)