]>
Commit | Line | Data |
---|---|---|
ac783e58 SW |
1 | from setuptools import setup |
2 | ||
3 | setup( | |
4 | name='nix-pin-deps', | |
ce81dce7 | 5 | version='1.1.0', |
cf8e9f60 SW |
6 | description="gc-pin dependencies of a partially-built derivation", |
7 | author="Scott Worley", | |
8 | author_email="scottworley@scottworley.com", | |
9 | url="https://git.scottworley.com/nix-pin-deps", | |
ac783e58 | 10 | py_modules=['nix_pin_deps'], |
cf8e9f60 | 11 | license="GPL-3.0", |
ac783e58 SW |
12 | entry_points={'console_scripts': ['nix-pin-deps = nix_pin_deps:main']}, |
13 | ) |