-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (35 loc) · 1.62 KB
/
Copy pathsetup.py
File metadata and controls
38 lines (35 loc) · 1.62 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
import os
import setuptools
with open(f"{os.path.dirname(os.path.abspath(__file__))}/requirements.txt") as requirements:
with open(f"{os.path.dirname(os.path.abspath(__file__))}/README.md") as readme:
setuptools.setup(
name="lucky-commit",
version="0.0.3",
description="Lucky commit generator written in Python",
long_description=readme.read(),
long_description_content_type="text/markdown",
author="Vladimir Chebotarev",
author_email="vladimir.chebotarev@gmail.com",
license="MIT",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only", # FIXME
"Topic :: Software Development",
"Topic :: Terminals",
"Topic :: Utilities",
],
keywords=["git", "lucky", "hash", "commit"],
project_urls={
"Documentation": "https://github.com/excitoon/lucky-commit/blob/master/README.md",
"Source": "https://github.com/excitoon/lucky-commit",
"Tracker": "https://github.com/excitoon/lucky-commit/issues",
},
url="https://github.com/excitoon/lucky-commit",
packages=[],
scripts=["lucky-commit", "lucky-commit.cmd"],
install_requires=requirements.read().splitlines(),
)