-
Notifications
You must be signed in to change notification settings - Fork 30
/
setup.py
60 lines (53 loc) · 1.77 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
58
59
60
#!/usr/bin/env python
# -*- coding:utf-8 -*-
"""
Setup script for Statik, the static web site generator.
"""
import re
from io import open
import os.path
from setuptools import setup, find_packages
def read_file(filename):
full_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), filename)
with open(full_path, "rt", encoding="utf-8") as f:
lines = f.readlines()
return lines
def get_version():
pattern = re.compile(r"__version__ = \"(?P<version>[0-9.a-zA-Z-]+)\"")
for line in read_file(os.path.join("statik", "__init__.py")):
m = pattern.match(line)
if m is not None:
return m.group('version')
raise ValueError("Cannot extract version number for Statik")
setup(
name="statik",
version=get_version(),
description="General-purpose static web site generator",
long_description="".join(read_file("README.md")),
long_description_content_type="text/markdown",
author="Thane Thomson",
author_email="connect@thanethomson.com",
url="https://getstatik.com",
install_requires=read_file('requirements.txt'),
entry_points={
'console_scripts': [
'statik = statik.cmdline:main',
]
},
license='MIT',
packages=find_packages(exclude=["tests", "tests.*"]),
include_package_data=True,
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: POSIX",
"Operating System :: MacOS",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Utilities",
]
)