일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- markdown
- matrixElementsSum
- Numpy
- shapeArea
- Python
- 피보나치 수
- 2750
- Sequential Search
- 10953
- codesignal
- centuryFromYear
- 백준
- 파이썬 포렌식
- Daily Commit
- cpp
- 파이썬머신러닝완벽가이드
- C++
- almostIncreasingSequence
- All Longest Strings
- flask
- adjacentElementsProduct
- codesingal
- baekjun
- collections.deque
- til
- 수 정렬하기
- recursion
- 2015 봄학기 알고리즘
- Counting cells in a blob
- data_structure
Archives
- Today
- Total
목록Python 1
Introfor
How to release python module
자신이 만든 모듈을 사용하려면 모듈이 있는 디렉터리에서 작업을 하거나 사이트 패키지에 모듈을 설치하는 것이다. 사이트 패키지에 모듈을 설치하는 방법은 모듈을 배포할 때 사용하는 방식과 동일하다. 1. 배포 설명 만들기 기존에 만든 py파일이 있고, 그것을 배포 파일로 만들기 위해 setuptools를 사용 name - 파일명을 적음 py_modules - 패키지에 포함할 '.py' 파일 목록 from setuptools import setup setup( # name - 배포 파일 식별 # py_modules - 패키지에 포함할 '.py' 파일 목록 name = 'vsearch', version = '1.0', description = 'nope', author = 'nope', author_email ..
Doing/Python
2019. 12. 19. 17:11