Skip to content

Commit 3f19cb1

Browse files
author
Cameron Brandon White
committed
Changed setup.py
1 parent 9ec12b0 commit 3f19cb1

File tree

3 files changed

+7
-12
lines changed

3 files changed

+7
-12
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Command line utility for the @pdxacm
88
You can use pip to download and install straight from github
99

1010
```sh
11+
pip install git+git://github.com/pdxacm/acmlib-py.git#egg=acmlib
1112
pip install git+git://github.com/pdxacm/acmcli.git#egg=acmcli
1213
```
1314

requirements.txt

-1
This file was deleted.

setup.py

+6-11
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,6 @@
33
# -*- coding: utf-8 -*-
44
import setuptools
55

6-
from pip.req import parse_requirements
7-
8-
# parse_requirements() returns generator of pip.req.InstallRequirement
9-
# object
10-
install_reqs = parse_requirements("requirements.txt")
11-
12-
# reqs is a list of requirement
13-
# e.g. ['django==1.5.1', 'mezzanine==1.4.6']
14-
reqs = [str(ir.req) for ir in install_reqs]
15-
166
if __name__ == "__main__":
177
setuptools.setup(
188
name="acmcli",
@@ -23,5 +13,10 @@
2313
include_package_data=True,
2414
packages=["acmcli"],
2515
scripts=["bin/acmcli"],
26-
install_requires=reqs
16+
install_requires=[
17+
'acmlib',
18+
],
19+
dependency_links=[
20+
'git+git://github.com/pdxacm/acmlib-py.git#egg=acmlib'
21+
]
2722
)

0 commit comments

Comments
 (0)