-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (35 loc) · 1.09 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="AutoSite",
version="1.4",
author="dotcomboom",
author_email="dotcomboom@somnolescent.net",
description="Keep all your website's pages under one template",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/dotcomboom/AutoSite-Legacy",
packages=setuptools.find_packages(),
install_requires=[
'pathlib',
'bs4',
'commonmark',
'argparse',
'dirsync'
],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"License :: Public Domain",
"Operating System :: OS Independent",
"Topic :: Text Processing :: Markup :: HTML"
],
entry_points={
'console_scripts': ['autosite=AutoSite.__init__:main'],
},
)