-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
88 lines (84 loc) · 2.74 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
from setuptools import setup, find_packages
version = '1.1.0'
classifiers = """
Development Status :: 5 - Production/Stable
Environment :: Console
Environment :: Plugins
Framework :: Setuptools Plugin
Intended Audience :: Developers
License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Operating System :: POSIX :: BSD
Operating System :: POSIX :: Linux
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Software Development :: Build Tools
Topic :: System :: Software Distribution
Topic :: Utilities
""".strip().splitlines()
long_description = (
open('README.rst').read()
+ '\n' +
open('CHANGES.rst').read()
+ '\n')
setup(
name='calmjs.sassy',
version=version,
description=(
'Package for extending the Calmjs framework to support the usage of '
'sass in a manner that crosses Python package boundaries by exposing '
'an import system that mimics the package namespaces available '
'within a given Python environment.'
),
long_description=long_description,
classifiers=classifiers,
keywords='',
author='Tommy Yu',
author_email='[email protected]',
url='https://github.com/calmjs/calmjs.sassy',
license='GPL',
packages=find_packages('src'),
package_dir={'': 'src'},
namespace_packages=['calmjs'],
include_package_data=True,
zip_safe=False,
install_requires=[
'calmjs>=3.2.0',
],
extras_require={
'libsass': [
'libsass>=0.11.0',
],
},
calmjs_scss_module_registry=['calmjs.scss'],
entry_points={
'calmjs.registry': [
'calmjs.scss = calmjs.sassy.registry:SCSSRegistry',
],
'calmjs.runtime': [
'scss = calmjs.sassy:libsass_runtime',
],
'distutils.setup_keywords': [
'calmjs_scss_module_registry = calmjs.dist:validate_line_list',
'extras_calmjs_scss = calmjs.dist:validate_json_field',
],
'egg_info.writers': [
('extras_calmjs_scss.json = '
'calmjs.sassy.dist:write_extras_calmjs_scss'),
('calmjs_scss_module_registry.txt = '
'calmjs.sassy.dist:write_module_registry_names'),
],
},
test_suite="calmjs.sassy.tests.make_suite",
)