Skip to content

Commit c4596ab

Browse files
committed
use requirements in setup
1 parent 0ccff15 commit c4596ab

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
include .gitignore
2+
include requirements.txt
23
include LICENSE
34
include README.rst
45
include THANKS

setup.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121

2222
from bucky import __version__
2323

24+
install_requires = [e.strip() for e in open("requirements.txt") if not e.startswith("#")]
25+
2426
setup(
2527
name = 'bucky',
2628
version = __version__,
@@ -35,7 +37,8 @@
3537
author = 'Paul J. Davis',
3638
author_email = '[email protected]',
3739
license = 'ASF2.0',
38-
url = 'https://github.com/cloudant/bucky.git',
40+
url = 'https://github.com/trbs/bucky.git',
41+
install_requires = install_requires,
3942

4043
classifiers = [
4144
'Development Status :: 4 - Beta',

0 commit comments

Comments
 (0)