-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
32 lines (30 loc) · 1014 Bytes
/
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
from setuptools import find_packages, setup
from civet import __version__
setup(
name='civet',
version=__version__,
author='Counsyl',
author_email='[email protected]',
license='Apache License 2.0',
description='CoffeeScript and Sass asset precompiler for the Django',
long_description=open('README.md', 'r').read(),
url='https://github.com/counsyl/civet',
packages=find_packages(),
include_package_data=True,
install_requires=[
"Django>=1.3",
"watchdog>=0.7.1"
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Pre-processors',
],
zip_safe=False,
)