forked from brokenseal/PyV8-OS-X
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 1 KB
/
setup.py
File metadata and controls
33 lines (31 loc) · 1 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
#!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name = "PyV8",
version = "0.8",
author = "Callegari Davide",
author_email = "admin@brokenseal.it",
description = "Taken from http://www.dcl.hpi.uni-potsdam.de/home/loewis/pyv8/",
long_description = open("README.md").read(),
license = "",
url = "https://github.com/brokenseal/PyV8-OS-X",
packages=find_packages(),
zip_safe = False,
package_data = {
'pyv8': ['*.so'], # include .so files when installed with pip/git
},
#install_requires= [], # I wish I could use pip better
classifiers = [
"Development Status :: 0.8",
"Environment :: Server",
"Intended Audience :: Developers",
"License :: All rights reserved",
"Operating System :: OS Independent",
"Programming Language :: Python",
]
)