File tree 3 files changed +7
-12
lines changed
3 files changed +7
-12
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ Command line utility for the @pdxacm
8
8
You can use pip to download and install straight from github
9
9
10
10
``` sh
11
+ pip install git+git://github.com/pdxacm/acmlib-py.git#egg=acmlib
11
12
pip install git+git://github.com/pdxacm/acmcli.git#egg=acmcli
12
13
```
13
14
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 3
3
# -*- coding: utf-8 -*-
4
4
import setuptools
5
5
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
-
16
6
if __name__ == "__main__" :
17
7
setuptools .setup (
18
8
name = "acmcli" ,
23
13
include_package_data = True ,
24
14
packages = ["acmcli" ],
25
15
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
+ ]
27
22
)
You can’t perform that action at this time.
0 commit comments