forked from colinta/StrangeCase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (40 loc) · 1.6 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
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="v4.5.20",
author="Colin Thomas-Arnold",
author_email="colinta@gmail",
url="https://github.com/colinta/StrangeCase",
install_requires=['Jinja2', 'PyYAML', 'watchdog'], # 'PIL', 'markdown2', 'clevercss', 'pyScss', 'pytest', 'python-dateutil', 'unidecode'
entry_points={
'console_scripts': [
'scase = strange_case.__main__:run'
]
},
description="A straightforward python static site generator.",
long_description=read("README.rst"),
packages=find_packages(),
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',
],
)