Skip to content

Commit

Permalink
fix setup
Browse files Browse the repository at this point in the history
  • Loading branch information
sirfoga committed Oct 14, 2018
1 parent 1a75fad commit 08aa3d7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ Suggestions and improvements are [welcome](https://github.com/sirfoga/pyhal/issu

## Thanks to
- [Kenneth Reitz](https://github.com/kennethreitz)
- [Jabba Laci](https://github.com/jabbalaci) ([Laszlo Szathmary](mailto:jabba.laci@gmail.com)


## License
Expand Down
2 changes: 1 addition & 1 deletion hal/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
__description__ = 'Your swiss knife to perform fast and easy pythonic stuff'
__url__ = 'https://sirfoga.github.io/pyhal/'
__version__ = '10.2.6'
__build__ = '3ab1a4ac77c2310fb7bf8964fa78dab018b43d72'
__build__ = 'ce406685b29f66e8ad18725a63a62e9cac59b7e4'
__author__ = 'Stefano Fogarollo'
__author_email__ = 'sirfoga@protonmail.com'
__license__ = 'MIT'
Expand Down
9 changes: 6 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
#!/usr/bin/env python

"""Setups Hal"""

import os

from setuptools import setup, find_packages

Expand All @@ -22,11 +25,11 @@ def get_version_details(path):


# folders
HERE = system.path.abspath(system.path.dirname(__file__))
SRC_FOLDER = system.path.join(HERE, "hal")
HERE = os.path.abspath(os.path.dirname(__file__))
SRC_FOLDER = os.path.join(HERE, "hal")

# version
VERSION_FILE = system.path.join(SRC_FOLDER, "__version__.py")
VERSION_FILE = os.path.join(SRC_FOLDER, "__version__.py")
VERSION = get_version_details(VERSION_FILE)

# descriptions
Expand Down

0 comments on commit 08aa3d7

Please sign in to comment.