forked from viraptor/phply
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
45 lines (40 loc) · 1 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
"""
PHPLY
--------------------
PHP implemented in Python
"""
from setuptools import setup, find_packages
setup(name="phply",
version="dev",
packages=find_packages(),
namespace_packages=['phply'],
include_package_data=True,
author='Ramen',
author_email='',
description='PHP in Python',
long_description=__doc__,
zip_safe=False,
platforms='any',
license='BSD',
url='http://www.github.com/ramen/phply',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: Education',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: PHP',
'Operating System :: Unix',
],
# entry_points={
# 'console_scripts': [
# ],
# },
install_requires=[
'ply',
],
test_suite='nose.collector',
tests_require=[
'nose',
],
)