-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 819 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 819 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
import setuptools
from pathlib import Path
setuptools.setup(
name = 'py2hy',
version = '0.0.0',
author = 'Kodi B. Arfer',
description = 'Translate Python code to Hy code',
long_description = Path('README.rst').read_text(),
long_description_content_type = 'text/x-rst',
project_urls = {
'Source Code': 'https://github.com/hylang/py2hy'},
install_requires = [
'hy >= 1.1.0',
'hyrule >= 1',
'packaging'],
packages = setuptools.find_packages(),
package_data = dict(py2hy = [
str(p.relative_to('py2hy'))
for p in Path('py2hy').rglob('*.hy')]),
classifiers = [
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Hy'])