Skip to content

Commit e9f291d

Browse files
build wheel and upload to pypi
1 parent 91d87ad commit e9f291d

File tree

3 files changed

+23
-29
lines changed

3 files changed

+23
-29
lines changed

README.md

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,25 @@
1313
- matplotlib >= 2.0.2
1414

1515
2. Installation
16-
17-
18-
```
19-
20-
> git clone https://github.com/tsznxx/PyCircos.git
21-
> cd Pycircos
22-
> python setup.py install [--user]
23-
```
16+
- intall dev branch
17+
18+
```
19+
git clone https://github.com/KimBioInfoStudio/PyCircos.git
20+
cd Pycircos
21+
python setup.py install [--user]
22+
```
23+
- install release brranch
24+
```
25+
pip install pycircos
26+
```
27+
2428
3. Examples
2529
2630
2731
```
28-
> cd demo
29-
> python run_circos.py run
30-
> display Circos.pdf
32+
cd demo
33+
python run_circos.py run
34+
display Circos.pdf
3135
```
3236
4. Demo Results
3337

requirements.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
numpy >= 1.4.1
2+
matplotlib >= 2.0.0
3+
pandas >= 0.18.0
4+
argparse >= 1.2.1

setup.py

Lines changed: 4 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/python
1+
#!/usr/bin/env python
22
#Last-modified: 17 Jul 2017 11:00:55 AM
33

44
# Module/Scripts Description
@@ -14,28 +14,14 @@
1414
# @author: Yunfei Wang
1515
# @contact: [email protected]
1616

17-
# ------------------------------------
18-
# python modules
19-
# ------------------------------------
2017

21-
import os,sys
22-
from setuptools import setup, find_packages, Extension
2318

24-
# ------------------------------------
25-
# constants
26-
# ------------------------------------
2719

28-
# ------------------------------------
29-
# Misc functions
30-
# ------------------------------------
3120

32-
# ------------------------------------
33-
# Classes
34-
# ------------------------------------
21+
import os,sys
22+
from setuptools import setup, find_packages, Extension
23+
3524

36-
# ------------------------------------
37-
# Main
38-
# ------------------------------------
3925

4026
if __name__ == '__main__':
4127

0 commit comments

Comments
 (0)