We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ccff15 commit c4596abCopy full SHA for c4596ab
MANIFEST.in
@@ -1,4 +1,5 @@
1
include .gitignore
2
+include requirements.txt
3
include LICENSE
4
include README.rst
5
include THANKS
setup.py
@@ -21,6 +21,8 @@
21
22
from bucky import __version__
23
24
+install_requires = [e.strip() for e in open("requirements.txt") if not e.startswith("#")]
25
+
26
setup(
27
name = 'bucky',
28
version = __version__,
@@ -35,7 +37,8 @@
35
37
author = 'Paul J. Davis',
36
38
author_email = '[email protected]',
39
license = 'ASF2.0',
- url = 'https://github.com/cloudant/bucky.git',
40
+ url = 'https://github.com/trbs/bucky.git',
41
+ install_requires = install_requires,
42
43
classifiers = [
44
'Development Status :: 4 - Beta',
0 commit comments