-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
49 lines (42 loc) · 1.55 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
import os
import sys
from setuptools import setup
from jamstack import __version__
here = os.path.abspath(os.path.dirname(__file__))
if sys.argv[-1] == "publish":
os.system("python setup.py sdist")
os.system("twine upload dist/* --skip-existing")
sys.exit()
with open(os.path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
with open(os.path.join(here, "requirements.txt"), encoding="utf-8") as f:
install_requires = f.read().split("\n")
setup(
name="jamstack",
version=f'{__version__}',
description="Jamstack in Python",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/jamstackpy/jamstack",
author="Abdur-Rahmaan Janhangeer",
author_email="[email protected]",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
keywords="jamstack static website jinja2",
packages=["jamstack"],
include_package_data=True,
python_requires=">=3.6",
install_requires=install_requires,
project_urls={
"Bug Reports": "https://github.com/jamstackpy/jamstack/issues",
"Source": "https://github.com/jamstackpy/jamstack",
},
entry_points={"console_scripts": ["jamstack=jamstack.__main__:main"]},
)