This repository was archived by the owner on Dec 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
58 lines (51 loc) · 1.53 KB
/
Copy pathsetup.py
File metadata and controls
58 lines (51 loc) · 1.53 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
47
48
49
50
51
52
53
54
55
56
57
58
"""Setup file for clifold python module"""
from setuptools import find_packages, setup
from os import path
from clifold.clifold_main import __version__
__version__ = __version__()
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
tests_require = [
"pytest",
"flake8"
]
extras = {
"test": tests_require
}
setup(
name="clifold",
version=__version__,
author="Jeff Yang",
author_email="ydc.jeff@gmail.com",
description="🚀 A CLI tool for scaffolding any Python Projects 🚀",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="scaffold python project cli",
license="MIT",
url="https://github.com/ydcjeff/clifold",
packages=find_packages(),
entry_points={
"console_scripts": [
"clif=clifold.clifold_main:cli"
],
},
install_requires=[
"requests"
],
extras_require=extras,
tests_require=tests_require,
python_requires=">=3.6.0",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Utilities"
],
)