Skip to content
This repository was archived by the owner on Sep 9, 2020. It is now read-only.

Commit

Permalink
Distutils assets tewked to work with Python 3.
Browse files Browse the repository at this point in the history
  • Loading branch information
ldesousa committed Apr 6, 2016
1 parent fef0dda commit f7edb46
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 19 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
*.egg-ingo
*.egg-info
*.gml
*.gfs
.settings
MANIFEST
File renamed without changes.
2 changes: 1 addition & 1 deletion hex.utils/hasc2gml.py → hex/utils/hasc2gml.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/python3
# coding=utf8
#
# Copyright (c) 2016 - Luís Moreira de Sousa
Expand Down
23 changes: 6 additions & 17 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,26 +1,15 @@
#!/usr/bin/python3
# coding=utf8

#import ez_setup
#ez_setup.use_setuptools()

from setuptools import setup, find_packages

from distutils.core import setup
setup(
name = "hex.utils",
version = "0.1",
packages = find_packages(include=["hex.utils"]),
scripts = ['hasc2gml.py'],
entry_points = {'console_scripts': ['hasc2gml = hex.utils']},

# Project uses reStructuredText, so ensure that the docutils get
# installed or upgraded on the target machine
install_requires = ['docutils>=0.3'],

#package_data = {
# If any package contains *.txt or *.rst files, include them:
# '': ['*.txt', '*.rst'],
# And include any *.msg files found in the 'hello' package, too:
# 'hello': ['*.msg'],
#},
version = "0.1.1",
packages = ['hex.utils'],
#scripts = ['hasc2gml.py'],

# metadata for upload to PyPI
author = "Luís Moreira de Sousa",
Expand Down

0 comments on commit f7edb46

Please sign in to comment.