-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (33 loc) · 1.26 KB
/
setup.py
File metadata and controls
39 lines (33 loc) · 1.26 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
from pathlib import Path
from setuptools import find_packages, setup
# The directory containing this file
ROOT_DIR = Path(__file__).parent
with open(ROOT_DIR / "README.md", "r") as readme_file:
long_description = readme_file.read()
with open(ROOT_DIR / "requirements.txt", "r") as requirements_file:
all_reqs = requirements_file.readlines()
setup(
name="proj_init",
description="Initialize you github projects with a one liner",
version="1.0.5",
packages=find_packages(),
install_requires=all_reqs,
python_requires=">=3.6.2",
entry_points={"console_scripts": ["proj_init=proj_init.create:proj_init"]},
author="Thales Nunes",
keyword="git, github, project, automation",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
url="https://github.com/thalesnunes/proj_init",
author_email="thalesaknunes22@gmail.com",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
)