-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (32 loc) · 938 Bytes
/
setup.py
File metadata and controls
39 lines (32 loc) · 938 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
30
31
32
33
34
35
36
37
38
39
# template from nekitdev on github
from setuptools import setup
from pathlib import Path
import re
__version__ = "0.0.1"
root = Path(__file__).parent
requirements = (root / "requirements.txt").read_text("utf-8").splitlines()
version = __version__
long_description = (root / "README.md").read_text("utf-8")
setup(
name="maple-cli",
author="maple-ml",
author_email="collinmcarroll@gmail.com",
url="https://github.com/maple-ml/cli",
project_urls={
"Issue tracker": "https://github.com/maple-ml/cli/issues"
},
version=version,
packages=["maple"],
entry_points = {
"maple": [
"maple = maple.__main__:maple"
]
},
license="MIT",
description="CLI utilities for maple",
long_description=long_description,
long_description_content_type="text/markdown",
include_package_data=True,
install_requires=requirements,
python_requires=">=3.6",
)