-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
57 lines (52 loc) · 1.78 KB
/
setup.py
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
from setuptools import setup, find_packages
JINJA2_REQUIREMENTS = [
'jinja2==3.0.3',
]
with open("README.md", "r") as f:
long_description=f.read()
from sharpshooter import __version__
version = __version__
setup(
name='sharpshooter',
version=version,
author="@byteface",
author_email="[email protected]",
license="MIT",
url='https://github.com/byteface/sharpshooter',
download_url='https://github.com/byteface/sharpshooter/archive/' + version + ' .tar.gz',
description='Easily create filesytems. A shorthand for creating files and folders. Create directory trees with ease',
long_description=long_description,
long_description_content_type="text/markdown",
keywords=['shorthand', 'file', 'folder', 'filesytem', 'tree', 'template', 'automation', 'mock', 'directory', 'mkdir', 'shutil', 'system'],
python_requires='>=3.6',
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Other Audience",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development",
"Topic :: Terminals",
"Topic :: Utilities",
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=[
'ply==3.11'
],
extras_require={
'jinja2': JINJA2_REQUIREMENTS,
},
packages=find_packages(),
include_package_data=True,
entry_points={
'console_scripts': [
'sharpshooter = sharpshooter.__main__:run',
],
},
)