forked from beeware/voc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (48 loc) · 1.68 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
46
47
48
49
50
51
52
53
#!/usr/bin/env python3
import io
import re
from setuptools import setup, find_packages
with io.open('./voc/__init__.py', encoding='utf8') as version_file:
version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", version_file.read(), re.M)
if version_match:
version = version_match.group(1)
else:
raise RuntimeError("Unable to find version string.")
with io.open('README.rst', encoding='utf8') as readme:
long_description = readme.read()
setup(
name='voc',
version=version,
description='Tools to convert Python code into Java bytecode.',
long_description=long_description,
author='Russell Keith-Magee',
author_email='[email protected]',
url='http://pybee.org/voc',
packages=find_packages(exclude=['docs', 'tests']),
python_requires='>=3.4',
entry_points={
'console_scripts': [
'voc = voc.__main__:main',
'vod = voc.java.__main__:main',
]
},
license='New BSD',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development',
'Topic :: Utilities',
],
test_suite='tests',
package_urls={
'Funding': 'https://pybee.org/contributing/membership/',
'Documentation': 'https://voc.readthedocs.io/en/latest/',
'Tracker': 'https://github.com/pybee/voc/issues',
'Source': 'https://github.com/pybee/voc',
},
)