-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 842 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 842 Bytes
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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import sys, os
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
version = open(os.path.join(here, 'VERSION.txt')).readline().rstrip()
setup(name='pyforth',
version=version,
description='Forth implementation in Python',
long_description=README,
classifiers=[],
keywords='forth virtual machine',
author='Jose Dinuncio',
author_email='jdinunci@uc.edu.ve',
url='http://github.com/jdinuncio/repoze.what.plugins.ini/tree/master',
license='GPL',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
tests_require=['nose'],
test_suite="nose.collector",
install_requires=[],
entry_points="""\
""",
)