This repository was archived by the owner on Jan 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (45 loc) · 1.31 KB
/
setup.py
File metadata and controls
48 lines (45 loc) · 1.31 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
from setuptools import setup
with open('README.md') as rm:
readme = rm.read()
requirements = [
'watchdog>=0.9.0',
'PyYAML>=3.13',
'colorama>=0.4.0',
'termcolor<=1.1.0'
]
test_requirements = [
'tox'
]
setup(
name='sledge',
version='1.0',
description='Build and deploy websites faster than you can wink your eye',
long_description=readme,
author='Caleb Pitan',
author_email='calebpitan@gmail.com',
url='https://github.com/framestd/sledge',
packages=[
'sledge',
'sledge.utils'
],
package_dir={'sledge': 'sledge'},
scripts=['bin/sledge', 'bin/sledge.cmd', 'bin/sledge_cli.py'],
install_requires=requirements,
license='MIT license',
zip_safe=False,
keywords='sledge framestd remarkup html build',
classifiers=[
'Development Status :: pre-release',
'Intended Audience :: developers',
'License :: OSI Aproved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
],
test_suite='tests',
test_require=test_requirements
)