forked from beeware/batavia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (30 loc) · 932 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
#/usr/bin/env python
import io
# import re
from setuptools import setup, find_packages
with io.open('README.rst', encoding='utf8') as readme:
long_description = readme.read()
setup(
name='batavia',
version='3.4.0.dev1',
description='Tools to run Python bytecode on the Javascript VM.',
long_description=long_description,
author='Russell Keith-Magee',
author_email='[email protected]',
url='http://pybee.org/batavia',
packages=find_packages(exclude=['docs', 'tests']),
install_requires=[
'jsmin'
],
license='New BSD',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Software Development',
'Topic :: Utilities',
],
test_suite='tests'
)