-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (35 loc) · 1.04 KB
/
setup.py
File metadata and controls
46 lines (35 loc) · 1.04 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
43
44
45
46
# coding=utf-8
from setuptools import setup, find_namespace_packages
with open("README.md", "r",encoding='utf-8') as fh:
long_description = fh.read()
NAME = "wpath"
DESCRIPTION = "package help find the project root folder."
KEYWORDS = "project root folder workspace"
AUTHOR = "Aeneas"
AUTHOR_EMAIL = "aeneas.he@gmail.com"
URL = "https://github.com/aeneashe/wpath"
VERSION = "0.1.4"
LICENSE = "MIT"
setup(
name=NAME,
version=VERSION,
python_requires=">=3.7",
install_requires=["print_pretty", "colorama"],
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
],
keywords=KEYWORDS,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
url=URL,
description=DESCRIPTION,
long_description=long_description,
long_description_content_type="text/markdown",
license=LICENSE,
packages=find_namespace_packages(),
include_package_data=True,
zip_safe=True,
)