-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 1.02 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
#from setuptools import setup
from distutils.core import setup
setup(
name = 'PScheme',
version = '0.1',
description = 'Scheme Interpreter',
long_description=open("README.rst", 'r').read(),
author = "Andrzej Radecki",
author_email = "[email protected]",
url = "http://github.com/andrzej-r/PScheme",
license = "BSD",
keywords = "scheme r5rs repl restricted embedded interpreter sandbox",
classifiers = [
"Programming Language :: Python",
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Interpreters",
"Topic :: System :: Software Distribution",
"Topic :: Security",
"Programming Language :: Python",
"Programming Language :: Scheme",
"Programming Language :: Lisp",
],
install_requires=[],
provides=['PScheme'],
packages = ['PScheme', 'tests'],
)