-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (34 loc) · 937 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
33
34
35
36
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
version = '0.1'
setup(
name="pybemhtml",
version=version,
description="BEM Javascript to Python compiler",
long_description="""""",
keywords='bem javascript ecmascript compiler',
license='BSD License',
author='Ilya Novoselov',
author_email='[email protected]',
url='https://github.com/nullie/pybemhtml',
packages=['pybemhtml'],
zip_safe=False,
include_package_data=True,
test_suite = 'nose.collector',
setup_requires=[
'nose'
],
install_requires=[
"pyjsparser>=0.1",
"simplejson>=2.1",
],
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
]
)