mach-nix/setup.py

29 lines
735 B
Python
Raw Normal View History

2020-04-22 09:28:58 +00:00
from os.path import abspath, dirname
from setuptools import setup, find_packages
pwd = dirname(abspath(__file__))
with open(pwd + '/VERSION') as f:
2020-04-22 09:28:58 +00:00
version = f.read().strip()
setup(
name='mach-nix',
version=version,
url='https://github.com/DavHau/mach-nix',
author='David Hauer',
author_email='hsngrmpf@gmail.com',
description='Tool to create highly reproducible python environments',
packages=find_packages(),
entry_points={
"console_scripts": [
"mach-nix = mach_nix:main"
],
},
package_data={'': ['nix/*']},
include_package_data=True,
2020-04-22 09:28:58 +00:00
install_requires=[
'distlib ~= 0.3.0',
'packaging >= 19.0',
'resolvelib == 0.3.0',
],
)