-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (42 loc) · 1.68 KB
/
setup.py
File metadata and controls
51 lines (42 loc) · 1.68 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
import os
from setuptools import setup
from setuptools import find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="StrangeCase",
version="4.6.8",
author="Colin T.A. Gray",
author_email="colinta@gmail.com",
url="https://github.com/colinta/StrangeCase",
install_requires=['Jinja2', 'PyYAML', 'watchdog'],
# optional: 'Pillow', 'misaka', 'clevercss', 'pyScss', 'pytest', 'python-dateutil', 'unidecode', 'plywood'
python_requires='>3.0.0',
entry_points={
'console_scripts': [
'scase = strange_case.__main__:run'
]
},
description="A straightforward python static site generator.",
long_description=read("README.rst"),
packages=find_packages(exclude=['strange_case.tests']),
keywords="strange_case static site generator",
platforms="any",
license="BSD",
classifiers=[
"Programming Language :: Python",
"Development Status :: 4 - Beta",
'Environment :: Console',
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
"Topic :: Text Processing",
'Topic :: Software Development',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Code Generators',
'Topic :: Internet',
'Topic :: Internet :: WWW/HTTP :: Site Management',
],
)